import type { ZxcvbnResult } from '@clerk/types';
export type zxcvbnFN = (password: string, userInputs?: (string | number)[]) => ZxcvbnResult;
export declare const loadZxcvbn: () => Promise<(password: string, userInputs?: (string | number)[]) => import("@zxcvbn-ts/core").ZxcvbnResult>;