import React from 'react'; import { ComponentSize, TooltipProps } from '../../atoms'; import { LabelPosition } from './types'; export interface FormFieldProps { label: string; labelPosition?: LabelPosition; name: string; children: React.ReactNode; size?: ComponentSize; disabled?: boolean; hasError?: boolean; error?: string; hint?: string; fullWidth?: boolean; required?: boolean; tooltip?: Omit; disableMessage?: boolean; } declare const FormField: ({ label, labelPosition, name, size, disabled, hasError, error, hint, fullWidth, required, disableMessage, tooltip, children, }: FormFieldProps) => React.JSX.Element; export default FormField;