export type RowndCookieData = { accessToken: string; }; export declare const ROWND_COOKIE_ID = "rownd-session"; export declare const ROWND_TOKEN_CALLBACK_PATH = "/api/rownd-token-callback"; export declare const setCookie: (token: string) => Promise; export declare const rowndCookie: { parse: (header: string | null) => undefined | RowndCookieData; serialize: (data: RowndCookieData) => string; };