import { CookieAttributes } from '../../types';
export declare const Cookie: {
    get: (name?: string) => string | Record<string, string>;
    set: (name: string, value: string, attributes?: CookieAttributes) => string;
    remove: (name: string, attributes?: CookieAttributes) => void;
};
