import React from 'react'; import type { FieldProps as FinalFieldProps, FieldRenderProps } from 'react-final-form'; import type { Status as OutlinedInputStatus } from '@toptal/picasso-outlined-input'; import type { TextLabelProps } from '@toptal/picasso-shared'; import type { ValueType, IFormComponentProps } from '../FieldBase'; export declare type FieldProps = FinalFieldProps, HTMLInputElement> & TextLabelProps; export declare type Props = TWrappedComponentProps & FieldProps & { name: string; type?: string; label?: React.ReactNode; status?: OutlinedInputStatus; children: (props: any) => React.ReactNode; renderFieldRequirements?: (props: { value?: TInputValue; error?: boolean; }) => React.ReactNode; }; declare const Field: { (props: Props): JSX.Element; displayName: string; }; export default Field; //# sourceMappingURL=Field.d.ts.map