import { Component } from 'react'; export interface RegistrationFormState { value: any; } export interface RegistrationFormProps { fieldsStyleConfig?: any; onSubmit?: (value: unknown) => void; submitButtonStyle?: unknown; submitTextStyle?: unknown; submitText?: unknown; style?: unknown; fieldsOptions?: any; value?: unknown; } export declare class RegistrationForm extends Component { constructor(props: RegistrationFormProps); private form; private readonly fieldsStyleConfig; private readonly fieldsTypes; private readonly fieldsOptions; private readonly handleSubmit; private readonly focusField; private readonly handleChange; componentDidMount(): void; render(): JSX.Element; }