import { CurrencyFormat } from '../../../entities/currency.entity';
export declare class CreateCurrencyDto {
    name: string;
    code: string;
    symbol: string;
    rounding?: number;
    format?: CurrencyFormat;
    is_active?: boolean;
}
