import { Suggestion as SuggestionRoot } from './suggestion';
import { SuggestionClear } from './suggestion-clear';
import { SuggestionEmpty } from './suggestion-empty';
import { SuggestionInput } from './suggestion-input';
import { SuggestionList } from './suggestion-list';
import { SuggestionOption } from './suggestion-option';
type Suggestion = typeof SuggestionRoot & {
/**
* Component that provides a Suggestion list.
*
* Place as a descendant of `Suggestion`
*
* @example
*
*
*
*
*/
List: typeof SuggestionList;
/**
* Component that provides an input field for the Suggestion list.
*
* Place as a descendant of `Suggestion`
*
* @example
*
*
*
*
*/
Input: typeof SuggestionInput;
/**
* Component that provides an empty Suggestion list.
*
* Place as a descendant of `Suggestion.List`
*
* @example
*
* Tomt
*
*/
Empty: typeof SuggestionEmpty;
/**
* A component for rendering individual options in the Suggestion list.
*
* @example
*
*
*
* Option 1
* Option 2
*
*
*/
Option: typeof SuggestionOption;
/**
* Component that provides a clear button for the Suggestion input.
*
* Place as a descendant of `Suggestion`
*
* @example
*
*
*
*
*
*/
Clear: typeof SuggestionClear;
};
/**
* A component that provides a suggestion list for an input field.
*
* @example
*
*
*
*
* Tomt
* Option 1
* Option 2
*
*
*/
declare const EXPERIMENTAL_Suggestion: Suggestion;
export type { SuggestionItem, SuggestionMultipleProps, SuggestionProps, SuggestionSingleProps, } from './suggestion';
export type { SuggestionClearProps } from './suggestion-clear';
export type { SuggestionEmptyProps } from './suggestion-empty';
export type { SuggestionInputProps } from './suggestion-input';
export type { SuggestionListProps } from './suggestion-list';
export type { SuggestionOptionProps } from './suggestion-option';
export { EXPERIMENTAL_Suggestion, SuggestionClear as EXPERIMENTAL_SuggestionClear, SuggestionEmpty as EXPERIMENTAL_SuggestionEmpty, SuggestionInput as EXPERIMENTAL_SuggestionInput, SuggestionList as EXPERIMENTAL_SuggestionList, SuggestionOption as EXPERIMENTAL_SuggestionOption, };
//# sourceMappingURL=index.d.ts.map