export declare const getTestCookieCache: () => {
    set: (key: string, value: string | Promise<string>, { secondsUntilExpiration, }?: {
        secondsUntilExpiration?: number | undefined;
    } | undefined) => Promise<void>;
    get: (key: string) => Promise<string | undefined>;
};
