export * from '@passlock/client'; export * from './token.js'; export * from './utils.js'; export * from './register.js'; export * from './login.js'; import type { VerifyEmail } from '@passlock/client'; export type ResendEmail = VerifyEmail & { userId: string; }; export type VerifyEmailData = { code: string; token?: string; }; /** * Store the email in local storage so they don't * need to re-enter it during subsequent authentication * * @param email * @returns */ export declare const saveEmailLocally: (email: string) => void; export declare const getLocalEmail: () => string | null;