import { RefOrValue } from './helpers'; /** * Use the composable `useSignOut` to sign out the user. * * @example * ```jsx * import { useSignOut } from '@nhost/vue' * * const { signOut, isSuccess } = useSignOut() * * const handleSignOut = async (e) => { * e.preventDefault() * await signOut() * } * ``` * * @docs https://docs.nhost.io/reference/vue/use-sign-out */ export declare const useSignOut: () => { signOut: (all?: RefOrValue) => Promise; isSuccess: import('vue').Ref; error: import('vue').Ref; }; //# sourceMappingURL=useSignOut.d.ts.map