import { ChainData, Token } from "@0xsquid/squid-types"; interface Params { address: string | undefined; token: Token | undefined; chain: ChainData | undefined; } export declare function useHederaAccountActivation({ address, chain, token }: Params): { isHederaAccountActivated: boolean; }; export {};