import React from "react"; import type { FormHeightNames } from "../../../system/Sizes"; type Props = { /** * Additional CSS classes to apply to the container. */ className?: string; /** * Height variant for all form components within this NaturalLanguageForm. * @default "md" */ height?: FormHeightNames; /** * Child components (NaturalLanguageForm.Input, NaturalLanguageForm.Select, NaturalLanguageForm.Text, NaturalLanguageForm.InputSelect). */ children: React.ReactNode; }; declare const NaturalLanguageFormWithSubComponents: React.ForwardRefExoticComponent> & { Input: React.ForwardRefExoticComponent, HTMLInputElement>, "ref">, "width"> & { suffix?: string; prefix?: string; icon?: React.FC | import("../..").IconKey; width?: import("../../types/general.types").FormFieldSize | [import("../../types/general.types").FormFieldSize, import("../../types/general.types").FormFieldSize?, import("../../types/general.types").FormFieldSize?, import("../../types/general.types").FormFieldSize?, import("../../types/general.types").FormFieldSize?]; height?: FormHeightNames; isError?: boolean; isClearIconVisible?: boolean; onClickClearField?: () => void; } & React.RefAttributes, "ref"> & React.RefAttributes>; Select: React.ForwardRefExoticComponent, HTMLSelectElement>, "ref">, "width"> & { children?: React.ReactNode; suffix?: string; prefix?: string; width?: import("../../types/general.types").FormFieldSize | [import("../../types/general.types").FormFieldSize, import("../../types/general.types").FormFieldSize?, import("../../types/general.types").FormFieldSize?, import("../../types/general.types").FormFieldSize?, import("../../types/general.types").FormFieldSize?]; height?: FormHeightNames; isError?: boolean; } & React.RefAttributes, "ref"> & React.RefAttributes>; Text: { (props: Omit & { as?: React.ElementType | undefined; text?: string; type?: import("../Text/Text").TextStyle; variant?: import("../Text/Text").TextStyle; inline?: boolean; color?: import("../Text/Text").TextColor; hoverColor?: import("../Text/Text").TextHoverColor; hoverInGroup?: boolean; className?: string; containsDangerousHtml?: boolean; truncate?: boolean; clampLines?: boolean; capitalize?: boolean; "data-test-id"?: string; }): React.JSX.Element; displayName: string; }; InputSelect: React.ForwardRefExoticComponent, "ref"> & React.RefAttributes> & { Input: React.ForwardRefExoticComponent, HTMLInputElement>, "ref">, "width"> & { suffix?: string; prefix?: string; icon?: React.FC | import("../..").IconKey; width?: import("../../types/general.types").FormFieldSize | [import("../../types/general.types").FormFieldSize, import("../../types/general.types").FormFieldSize?, import("../../types/general.types").FormFieldSize?, import("../../types/general.types").FormFieldSize?, import("../../types/general.types").FormFieldSize?]; height?: FormHeightNames; isError?: boolean; isClearIconVisible?: boolean; onClickClearField?: () => void; } & React.RefAttributes, "ref"> & React.RefAttributes>; Select: React.ForwardRefExoticComponent, HTMLSelectElement>, "ref">, "width"> & { children?: React.ReactNode; suffix?: string; prefix?: string; width?: import("../../types/general.types").FormFieldSize | [import("../../types/general.types").FormFieldSize, import("../../types/general.types").FormFieldSize?, import("../../types/general.types").FormFieldSize?, import("../../types/general.types").FormFieldSize?, import("../../types/general.types").FormFieldSize?]; height?: FormHeightNames; isError?: boolean; } & React.RefAttributes, "ref"> & React.RefAttributes>; }; }; export { NaturalLanguageFormWithSubComponents as NaturalLanguageForm };