import { Entity } from '@loopback/repository';
export declare class Currency extends Entity {
    id: string;
    currencyCode: string;
    currencyName: string;
    symbol?: string;
    country?: string;
    constructor(data?: Partial<Currency>);
}
