import type { ReactNode, HTMLAttributes } from 'react'; import React from 'react'; import type { BaseProps } from '@toptal/picasso-shared'; export interface Props extends BaseProps, HTMLAttributes { /** The text of the hint */ hint?: string | ReactNode; /** The text of the error */ error?: string | ReactNode; /** The text of the warning */ warning?: string | ReactNode; /** The content of the Form.Field */ children: ReactNode; /** Field requirements for this specific field */ fieldRequirements?: ReactNode; /** instance of FormAutoSaveIndicator component */ autoSaveIndicator?: ReactNode; /** whether multiline counter is visible */ hasMultilineCounter?: boolean; } export declare const FormField: React.ForwardRefExoticComponent>; export default FormField; //# sourceMappingURL=FormField.d.ts.map