import { CookieConfig, RequestCookieBuilder as RequestCookieContract } from '@supercharge/contracts'; export declare class RequestCookieBuilder implements RequestCookieContract { /** * Stores the options used when retrieving a cookie value from the request. */ private readonly cookieConfig; /** * Create a new instance. */ constructor(options: CookieConfig); /** * Retrieve the unsigned cookie value. */ unsigned(): this; }