import { FC } from 'react'; interface FormFieldContainerProps { /** Error message displayed under the field. Replaces `hintMessage`. */ errorMessage?: string; /** Hint message displayed under the field. */ hintMessage?: string; /** Whether the field is disabled (only affect styles). */ disabled?: boolean; /** Label of the field. */ label?: string; /** Whether the field is required (only affect styles). */ required?: boolean; } export declare const FormFieldContainer: FC; export {};