export type CacheValues = {
    token: {
        value: string | null;
    };
    'acept-cookie'?: {
        value?: boolean;
    };
    ratedr?: {
        value?: boolean;
    };
};
export declare const cookies: {
    get: <T extends keyof CacheValues>(key: keyof CacheValues) => CacheValues[T];
    set: <T extends keyof CacheValues>(key: T, value: CacheValues[T]) => any;
};
