import { CookieStorage } from 'aws-amplify/adapter-core'; export declare const createSignInFlowProofCookies: ({ state, pkce, }: { state: string; pkce: string; }) => { name: string; value: string; }[]; export declare const createSignOutFlowProofCookies: () => { name: string; value: string; }[]; export declare const createAuthFlowProofCookiesSetOptions: (setCookieOptions: CookieStorage.SetCookieOptions, origin: string) => { domain: string | undefined; path: string; httpOnly: boolean; secure: boolean; sameSite: "lax"; maxAge: number; }; export declare const createAuthFlowProofCookiesRemoveOptions: (setCookieOptions: CookieStorage.SetCookieOptions) => { domain: string | undefined; path: string; maxAge: number; };