import { default as React } from 'react'; import { FormRowProps } from '../../FormRow/FormRow'; import { FormRowHelperTextOwnProps } from '../../FormRow/FormRowHelperText'; import { MultiSelectProps } from '../../Inputs/MultiSelect/MultiSelect'; export type { MultiSelectSelectors } from '../../Inputs/MultiSelect/hooks/useMultiSelectState'; export interface MultiSelectFieldProps extends Omit, Partial, Omit, 'error' | 'warning'> { /** * Displays a loading state instead of the MultiSelect input. */ loading?: boolean; /** * Addon to the right of the input. * * **INTERNAL USE ONLY:** It is unsafe to rely on this prop, as it may change or be removed in the future. * @internal */ UNSAFE_addon?: React.ReactNode; } export declare const MultiSelectField: (props: MultiSelectFieldProps & React.RefAttributes) => React.ReactNode;