import { A as AuthClient, F as FetchError } from './fetch-error-UfPrliNm.cjs'; import 'better-auth/client'; interface UseBetterAuthCapacitorOptions { authClient: AuthClient; debugLogs?: boolean; onError?: (error: FetchError) => void; onRequest?: (href: string) => void; onSuccess?: (callbackURL?: string | null) => void; } declare const useBetterAuthCapacitor: ({ authClient, debugLogs, onError, onRequest, onSuccess }: UseBetterAuthCapacitorOptions) => { isLoading: boolean; error: FetchError | null; }; export { useBetterAuthCapacitor };