export declare const useCookie: (key: string) => [value: string, setCookie: (value: string | null, opts?: IOpts) => void];
interface IOpts {
    expires?: Date;
    sameSite?: 'lax' | 'none' | 'strict';
    secure?: boolean;
    path?: string;
    domain?: string;
}
export {};
