import { ICurrencyCode, ICurrencySymbol } from '../../..'; export interface ICurrency { code: ICurrencyCode; symbol?: ICurrencySymbol; } export declare const isICurrency: (t: any) => t is ICurrency;