export declare class CreateCurrencyDto {
    currency_code: string;
    name: string;
    symbol: string;
    country_id: number;
}
