export type ReTest = (str: string) => boolean; type ReSanityOptions = { maxLength?: number; minLength?: number; }; export declare const reSanityCheck: (cb: (str: string) => boolean, options: ReSanityOptions) => (str: string) => boolean; export declare const test: (re: RegExp, options?: ReSanityOptions) => (str: string) => boolean; export declare const matchLogin: (str: string) => boolean; export declare const matchRegister: (str: string) => boolean; export declare const matchUsername: (str: string) => boolean; export declare const matchUsernameAttr: (value: string) => boolean; export declare const matchUsernameValue: (str: string) => boolean; export declare const matchUsernameOutlier: (str: string) => boolean; export declare const matchEmailAttr: (value: string) => boolean; export declare const matchEmailValue: (str: string) => boolean; export declare const matchEmail: (value: string) => boolean; export declare const matchTel: (str: string) => boolean; export declare const matchTelValue: (str: string) => boolean; export declare const matchRememberMe: (str: string) => boolean; export declare const matchTOS: (str: string) => boolean; export declare const matchTrouble: (str: string) => boolean; export declare const matchRecovery: (value: string) => boolean; export declare const matchMultiStep: (str: string) => boolean; export declare const matchStepAction: (value: string) => boolean; export declare const matchCreateAction: (str: string) => boolean; export declare const matchConfirmAction: (str: string) => boolean; export declare const matchOAuth: (str: string) => boolean; export declare const matchCaptcha: (str: string) => boolean; export declare const matchSearchAction: (str: string) => boolean; export declare const matchPasswordReset: (value: string) => boolean; export declare const matchPasswordResetAttr: (value: string) => boolean; export declare const matchPasswordCreate: (value: string) => boolean; export declare const matchPasswordCreateAttr: (value: string) => boolean; export declare const matchPasswordConfirm: (value: string) => boolean; export declare const matchPasswordConfirmAttr: (value: string) => boolean; export declare const matchPasswordCurrent: (value: string) => boolean; export declare const matchPasswordCurrentAttr: (value: string) => boolean; export declare const matchPasswordOutlier: (str: string) => boolean; export declare const matchHidden: (str: string) => boolean; export declare const matchTwoFa: (value: string) => boolean; export declare const matchOtpAttr: (str: string) => boolean; export declare const matchOtpOutlier: (str: string) => boolean; export declare const matchOtpFieldOutlier: (value: string) => boolean; export declare const matchOtpOutlierAction: (str: string) => boolean; export declare const matchAuthenticator: (str: string) => boolean; export declare const matchMFAAttr: (str: string) => boolean; export declare const matchMFA: (value: string) => boolean; export declare const matchNewsletter: (str: string) => boolean; export declare const matchNewsletterAttr: (value: string) => boolean; export declare const matchFullName: (value: string) => boolean; export declare const matchFirstName: (str: string) => boolean; export declare const matchMiddleName: (str: string) => boolean; export declare const matchLastName: (str: string) => boolean; export declare const matchTelephone: (value: string) => boolean; export declare const matchOrganization: (str: string) => boolean; export declare const matchCity: (str: string) => boolean; export declare const matchZipCode: (str: string) => boolean; export declare const matchState: (str: string) => boolean; export declare const matchCountry: (value: string) => boolean; export declare const matchAddress: (value: string) => boolean; export declare const matchCCName: (str: string) => boolean; export declare const matchCCFirstName: (value: string) => boolean; export declare const matchCCLastName: (value: string) => boolean; export declare const matchCCNumber: (str: string) => boolean; export declare const matchCCSecurityCode: (value: string) => boolean; export declare const matchCCV: (str: string) => boolean; export declare const matchCCOutlier: (value: string) => boolean; export declare const matchCCExp: (value: string) => boolean; export declare const matchCCExpMonth: (value: string) => boolean; export declare const matchCCExpYear: (value: string) => boolean; export declare const matchPayment: (str: string) => boolean; export declare const matchIFrameField: (value: string) => boolean; export {};