export interface Options { fetch?: typeof globalThis.fetch; baseURL?: string; acceptLanguage?: string; cookie?: string; xUserId?: number | string; } export declare const setOptions: (partialOptions: Partial) => void; export declare const getOptions: () => Readonly;