import { type NetworkClient, type Optional } from '@sudobility/types'; import type { IndexerSignInMessageResponse } from '@sudobility/mail_box_types'; interface UseIndexerGetSigningMessageReturn { getSigningMessage: (walletAddress: string, chainId: number, domain: string, url: string) => Promise>; isLoading: boolean; error: Optional; clearError: () => void; } export declare const useIndexerGetSigningMessage: (networkClient: NetworkClient, endpointUrl: string, dev?: boolean) => UseIndexerGetSigningMessageReturn; export {}; //# sourceMappingURL=useIndexerGetSigningMessage.d.ts.map