import { UseQueryOptions } from '@tanstack/react-query'; import { default as sdk } from '@farcaster/miniapp-sdk'; type FetchParams = Parameters; type Input = FetchParams[0]; type Init = FetchParams[1]; /** * Hook to authenticate user via Farcaster SDK's Quick Auth feature. * Runs only in Mini App context, performs a single authenticated fetch to * your app's auth endpoint * @param input - The endpoint that will process the Quick Auth request * @param init - A RequestInit object containing any custom settings that you want to apply to the request * @param useQueryOptions - Options to pass to the useQuery hook * @returns The React Query result where `data` is `TQuickAuthResponse | null` */ export declare function useQuickAuth(input: Input, init?: Init, useQueryOptions?: UseQueryOptions): import('@tanstack/react-query').UseQueryResult, Error>; export {}; //# sourceMappingURL=useQuickAuth.d.ts.map