import { GetMultipleParamsOptions } from '../'; /** * GetCookies decorator injects cookies into variable picked by name provided as option. * @tutorial To get cookies in your class based view, create a variable and decorate it with @GetCookies(). * @example @GetCookies({ explicitly: [ 'token', 'favourites' ] }) private tokenAndFavourites: string[]; * @param options * @returns {(target: any, key: string) => void} * @constructor */ export declare function GetCookies(options?: GetMultipleParamsOptions): (...args: any[]) => void;