import type { Address } from 'viem';
interface AllowedAssetsHookResult {
    allowedAssets: {
        [chainId in string]?: Address[];
    } | undefined;
    isAllowed: (chainId: number | string, tokenAddress: Address) => boolean;
    isLoading: boolean;
}
export declare function useAllowedAssets({ enabled, }?: {
    enabled?: boolean;
}): AllowedAssetsHookResult;
export {};
