import React from 'react'; import { Story, Meta } from '@storybook/react'; import { TypeaheadComponentProps } from './Typeahead'; import { noop } from '../../tests/helpers'; declare const _default: Meta; export default _default; export declare const Default: Story; export declare const MultiSelect: Story; export declare const ClearButton: Story; export declare const LoadingState: Story; export declare const Pagination: Story; export declare const AllowNew: Story; export declare const DisabledItem: Story; export declare const CustomInput: Story; export declare const CustomMenu: Story; export declare const InputGrouping: { (args: TypeaheadComponentProps): React.JSX.Element; args: { allowNew: boolean; clearButton: boolean; flip: boolean; id: string; isLoading: undefined; labelKey: string; multiple: boolean; onBlur: typeof noop; onChange: typeof noop; onFocus: typeof noop; onInputChange: typeof noop; onKeyDown: typeof noop; options: { name: string; population: number; capital: string; region: string; }[]; placeholder: string; positionFixed: boolean; }; }; export declare const Controlled: { (args: TypeaheadComponentProps): React.JSX.Element; args: { allowNew: boolean; clearButton: boolean; flip: boolean; id: string; isLoading: undefined; labelKey: string; multiple: boolean; onBlur: typeof noop; onChange: typeof noop; onFocus: typeof noop; onInputChange: typeof noop; onKeyDown: typeof noop; options: { name: string; population: number; capital: string; region: string; }[]; placeholder: string; positionFixed: boolean; }; }; export declare const InputValidation: { (args: TypeaheadComponentProps): React.JSX.Element; args: { isValid: boolean; isInvalid: boolean; allowNew: boolean; clearButton: boolean; flip: boolean; id: string; isLoading: undefined; labelKey: string; multiple: boolean; onBlur: typeof noop; onChange: typeof noop; onFocus: typeof noop; onInputChange: typeof noop; onKeyDown: typeof noop; options: { name: string; population: number; capital: string; region: string; }[]; placeholder: string; positionFixed: boolean; }; };