import { Address } from "viem"; interface UseProfileParameters { address?: Address; includeBalance?: boolean; } export declare function useProfile({ address, includeBalance }: UseProfileParameters): { balance: { decimals: number; formatted: string; symbol: string; value: bigint; } | undefined; ensAvatar: undefined; ensName: undefined; }; export {};