import type { FetchOptions } from 'ofetch'; export declare const useSanctum: () => { options: import("../types/ModuleOptions").ModuleOptions; user: import("vue").Ref; isLoggedIn: import("vue").ComputedRef; refreshUser: () => Promise; login: (credentials: Record, clientOptions?: FetchOptions, callback?: (responseData: LoginApiResponse, user: T | null) => any) => Promise; logout: (callback?: () => any) => Promise; };