import zxcvbnOptions, { Options } from './Options'; import debounce from './debounce'; import { MatchExtended, ZxcvbnResult, Matcher, MatchOptions } from './types'; export declare const zxcvbn: (password: string, userInputs?: (string | number)[]) => ZxcvbnResult; export declare const zxcvbnAsync: (password: string, userInputs?: (string | number)[]) => Promise; export { zxcvbnOptions, ZxcvbnResult, debounce, Options, Matcher, MatchOptions, MatchExtended, };