import { InjectedIntl, InjectedIntlProps } from 'react-intl'; import { FormSelectChoice, VerificationService } from '../../../lib/types/types'; interface ChangeLocaleProps { value: FormSelectChoice; options: FormSelectChoice[]; onChange: (localeChoice: FormSelectChoice) => any; } export declare const ChangeLocaleComponent: import('react').ComponentClass, any> & { WrappedComponent: import('react').ComponentType; }; /** * This V2 component wraps the original one * It only takes verificationService as a prop for easier/slimmer invocation and to ensure locale ends up in the viewModel */ interface ChangeLocaleV2Props { verificationService: VerificationService; intl: InjectedIntl; } export declare const ChangeLocaleV2Component: import('react').ComponentClass, any> & { WrappedComponent: import('react').ComponentType; }; export {};