import { Response, CookieOptions } from 'express'; export declare let Cookie: (cookieName?: string) => (target: any, propertyKey: string, index: number) => void; export declare let Cookies: (cookieName?: string) => (target: any, propertyKey: string, index: number) => void; export declare type CookieSetter = (name: string, val: any, options?: CookieOptions) => Response; export declare let SetCookie: () => (target: any, propertyKey: string, index: number) => void; export declare type CookieClearer = (name: string, options?: any) => Response; export declare let ClearCookie: () => (target: any, propertyKey: string, index: number) => void;