import { PureComponent } from 'react'; import type { StyleProp, ViewStyle } from 'react-native'; import { FormLabelPosition } from './Form'; export interface SingleLineFormProps { fieldsTypes: any; fieldsOptions?: any; fieldsStyleConfig?: any; labelPosition?: FormLabelPosition; onSubmit?: (value: any) => void; submitButtonStyle?: StyleProp; submitTextStyle?: StyleProp; submitText?: any; value?: any; style?: StyleProp; } export declare class SingleLineForm extends PureComponent { constructor(props: SingleLineFormProps); private form; private readonly fieldsStyleConfig; private readonly fieldsTypes; private readonly fieldsOptions; private readonly labelPosition; componentDidMount(): void; private readonly handleSubmit; render(): JSX.Element; }