export type Currency = {
    id: string;
    name: string;
    digits: number;
    code: string;
};
export declare const isCurrency: (c?: unknown) => c is Currency;
