import { BaseEntity } from '../database/base.entity';
export declare enum CurrencyRounding {
    R1 = 1,
    R5 = 5,
    R10 = 10,
    R50 = 50,
    R100 = 100
}
export declare enum CurrencyFormat {
    INDIAN = "indian",
    INTERNATIONAL = "international",
    DOT = "dot"
}
export declare class CurrencyEntity extends BaseEntity {
    name: string;
    code: string;
    symbol: string;
    rounding: number;
    format: CurrencyFormat;
    is_active: boolean;
    is_system: boolean;
}
