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