import type { Ref } from 'vue'; export declare function readCookie(name: string): string | undefined; /** * Cookie-backed ref for non-Nuxt consumers, the counterpart of * `useCookie()` in client-admin-console. Client-side writes persist back * to the cookie; server-side there is no `document`, so the caller seeds * the value through `initial` (the auth console reads the cookie in * `renderAuthConsolePage` and hands it over via the hydration payload). */ export declare function createCookieRef(name: string, initial?: string, fallback?: string): Ref; //# sourceMappingURL=cookie.d.ts.map