react-bootstrap-typeahead
Version:
React typeahead with Bootstrap styling
11 lines (10 loc) • 371 B
TypeScript
import { Story, Meta } from '@storybook/react';
import { MenuItemProps } from './MenuItem';
import { TypeaheadContextType } from '../../core/Context';
declare const _default: Meta<import("@storybook/react").Args>;
export default _default;
interface Args {
context: Partial<TypeaheadContextType>;
props: MenuItemProps;
}
export declare const Default: Story<Args>;