export declare class CreateFeeDto {
    name: string;
    description: string;
    amount: number;
    modifier: string;
    taxable: boolean;
    type: string;
}
