import type { SanityClient } from '@sanity/client'; import { Observable } from 'rxjs'; export declare const saveToken: ({ token, projectId }: { token: string; projectId: string; }) => void; export declare const clearToken: (projectId: string) => void; export declare const getToken: (projectId: string) => string | null; export declare const fetchToken: (sid: string, client: SanityClient) => Observable<{ token: string; }>; export declare const authToken$: Observable; //# sourceMappingURL=token.d.ts.map