import Cookies from "js-cookie"; export declare type State = string | undefined; export interface Options extends Cookies.CookieAttributes { defaultValue?: State | (() => State); } declare function useCookieState(cookieKey: string, options?: Options): readonly [import("vue").Ref, (newValue: State | ((prevState: State) => State), newOptions?: Cookies.CookieAttributes) => void]; export default useCookieState;