import { Context } from "@tsed/platform-params";
import { PlatformTestingSdkOpts } from "../interfaces/index.js";
export declare class CookiesCtrl {
    /**
     * Handle request and get auth from cookies
     * @param authorization
     */
    scenario1(authorization: string): {
        authorization: string;
    };
    scenario2($ctx: Context): string;
}
export declare function testCookies(options: PlatformTestingSdkOpts): void;
