export type TrustWalletUrlFormat = 'link' | 'scheme'; export type TrustWalletParameterValue = string | number; export type TrustWalletAssetId = string; export interface TrustWalletUrlOptions { /** * Use the documented `https://link.trustwallet.com` app link by default, or `trust://` for direct app deeplinks. * * @default 'link' */ format?: TrustWalletUrlFormat; } export type TrustWalletPayload = TrustWalletUrlOptions & Record; export declare function trustWalletBaseUrl(format?: TrustWalletUrlFormat): "trust://" | "https://link.trustwallet.com/"; export declare function trustWalletUrl(route: string, payload?: T): string;