import { ChainId } from '@justaname.id/sdk'; export declare const buildIsMAppEnabledKey: (ens: string, mApp: string, chainId: ChainId | undefined) => (string | ChainId | undefined)[]; export interface UseIsMAppEnabledParams { ens: string; mApp: string; chainId?: ChainId; } export interface UseIsMAppEnabledResult { isMAppEnabled: boolean | undefined; isMAppEnabledPending: boolean; refetchIsMAppEnabled: () => void; } export declare const useIsMAppEnabled: (params: UseIsMAppEnabledParams) => UseIsMAppEnabledResult; //# sourceMappingURL=useIsMAppEnabled.d.ts.map