export declare class CreateExpenseDto {
    category: string;
    amount: number;
    description: string;
    jobId: number;
}
