import { SbAuthIdentifier } from '../../../../types'; import { ConfirmFieldValidation, ConfirmFieldVariant, SbConfirmFieldProps as ConfirmProps, EmailFieldValidation, SbEmailFieldProps as EmailProps, IdentifierFieldValidation, SbIdentifierFieldProps as IdentifierProps, NameFieldValidation, SbNameFieldProps as NameProps, PasswordFieldRuleName, PasswordFieldValidation, PasswordFieldVariant, SbPasswordFieldProps as PasswordProps, PhoneFieldValidation, SbPhoneFieldProps as PhoneProps, UsernameFieldValidation, SbUsernameFieldProps as UsernameProps } from './field.types'; export declare const genRequiredError: (label: string) => string; export declare const genFormatError: (label: string) => string; export declare const genMinlengthError: (label: string, minlength?: number) => string; export declare const genMaxlengthError: (label: string, maxlength?: number) => string; export declare const EMAIL_FIELD_DEFAULT_PROPS: Omit; export declare const PHONE_FIELD_DEFAULT_PROPS: Omit; export declare const USERNAME_FIELD_DEFAULT_PROPS: Omit; export declare const NAME_FIELD_DEFAULT_PROPS: Omit; export declare const IDENTIFIER_FIELD_DEFAULT_PROPS: Omit; export declare const PASSWORD_FIELD_DEFAULT_PROPS: Omit; export declare const CONFIRM_FIELD_DEFAULT_PROPS: Omit; export declare const EMAIL_FIELD_VALIDATIONS: EmailFieldValidation[]; export declare const PHONE_FIELD_VALIDATIONS: PhoneFieldValidation[]; export declare const USERNAME_FIELD_VALIDATIONS: UsernameFieldValidation[]; export declare const NAME_FIELD_VALIDATIONS: NameFieldValidation[]; export declare const IDENTIFIER_FIELD_VALIDATIONS: IdentifierFieldValidation[]; export declare const PASSWORD_FIELD_VALIDATIONS: PasswordFieldValidation[]; export declare const CONFIRM_FIELD_VALIDATIONS: ConfirmFieldValidation[]; export declare const AUTH_IDENTIFIERS: SbAuthIdentifier[]; export declare const PASSWORD_FIELD_VARIANTS: PasswordFieldVariant[]; export declare const CONFIRM_FIELD_VARIANTS: ConfirmFieldVariant[]; export declare const PASSWORD_FIELD_RULE_NAMES: PasswordFieldRuleName[];