react-bootstrap-typeahead
Version:
React typeahead with Bootstrap styling
18 lines (17 loc) • 644 B
TypeScript
import { Story, Meta } from '@storybook/react';
import type { Size, TypeaheadInputProps } from '../../types';
declare const _default: Meta<import("@storybook/react").Args>;
export default _default;
interface Args extends Omit<TypeaheadInputProps, 'size'> {
hintText?: string;
isInvalid?: boolean;
isValid?: boolean;
size?: Size;
}
export declare const Default: Story<Args>;
export declare const Disabled: Story<Args>;
export declare const Small: Story<Args>;
export declare const Large: Story<Args>;
export declare const Valid: Story<Args>;
export declare const Invalid: Story<Args>;
export declare const WithHint: Story<Args>;