export declare class CreateInvoiceSettingsDto {
    notes: string;
    client_id?: number;
    client_tax: string;
    fields?: {
        [key: string]: {
            visible: boolean;
            label: string;
            is_fixed?: boolean;
        };
    };
}
