import { CookieStore } from '@whatwg-node/cookie-store';
import { ServerAdapterPlugin } from '@whatwg-node/server';
declare global {
    interface Request {
        cookieStore?: CookieStore;
    }
}
export declare function useCookies<TServerContext>(): ServerAdapterPlugin<TServerContext>;
