import { Step } from './types'; import intlTelInput from 'intl-tel-input'; type TypeOfValidation = 'requiredFields' | 'checkbox' | 'emails' | 'blockedEmails' | 'phones'; export declare const PERSONAL_EMAILS: string[]; export declare const getPhoneErrorMessage: (itiPhoneInput: intlTelInput.Plugin) => string; export declare const getValidationMessage: (fieldType: string) => string; export declare const checkIfRegNumberIsRequired: (shadowRoot: ShadowRoot) => boolean; export declare const isValidStep: (step: Step, shadowRoot: ShadowRoot) => boolean; export declare const showValidationError: (step: Step, validationType: TypeOfValidation, shadowRoot: ShadowRoot) => void; export declare const hideValidationError: (step: Step, shadowRoot: ShadowRoot) => void; export {};