export declare const cookies: {
    get(name: string, doc?: Document): string;
    /**
     * Sets a cookie.
     *
     * @param maxAge If specified the cookie will be persistent, otherwise it will be a session cookie.
     */
    set(name: string, value?: string, maxAge?: number, path?: string): void;
};
//# sourceMappingURL=cookies.d.ts.map