export type EnsAgentLookup = { ok: true; chainId: number; ensName: string; account: string | null; agentUrl: string | null; image: string | null; description: string | null; identity: unknown; }; export declare function normalizeOrgName(input: string): string; export declare function buildEnsName(params: { name: string; orgName: string; }): string; export declare function getEnsAgentLookup(params: { name: string; orgName?: string; chainId: number; }): Promise; export declare function toJsonSafe(value: unknown): unknown; export declare function toJsonSafeCalls(calls: Array<{ to: `0x${string}`; data: `0x${string}`; value?: bigint | number | string | null; }>): { to: `0x${string}`; data: `0x${string}`; value: string | number | null; }[]; export declare function toJsonSafeReceipt(receipt: T): T; //# sourceMappingURL=ensAdmin.d.ts.map