export declare class FeeType {
    id: number;
    code: string;
    name: string;
    calculation_method: string;
    is_active: number;
    config: Record<string, any>;
    created_at: Date;
    updated_at: Date;
}
