import { TransactionType } from '../entities/budget-category.entity';
export declare class CreateCategoryDto {
    name: string;
    type: TransactionType;
    color?: string;
    isDefault?: boolean;
}
