export interface RelayTokenInfo {
    chainId: number;
    address: string;
    symbol: string;
    name: string;
    decimals: number;
    vmType: string;
    metadata: {
        logoURI: string;
        verified: boolean;
        isNative: boolean;
    };
}
interface GetRelayAssetInfoParams {
    chainId: string;
    address: string;
    useExternalSearch?: boolean;
    apiKey?: string;
}
export declare function getRelayAssetInfo({ chainId, address, useExternalSearch, apiKey, }: GetRelayAssetInfoParams): Promise<RelayTokenInfo>;
export {};
//# sourceMappingURL=currency.d.ts.map