jobiqo-cl
Version:
[](https://circleci.com/gh/jobiqo/jobiqo-cl)
40 lines (39 loc) • 937 B
TypeScript
/**
* @file index.tsx
*
* @fileoverview Story to display the select inside the component library
* styleguide.
*/
/// <reference types="react" />
import { MultipleAutocomplete } from './multiple';
declare const _default: {
title: string;
};
export default _default;
export declare const SingleSelect: {
(): JSX.Element;
story: {
title: string;
parameters: {
component: ({ id, items, label, required, placeholder, onChange, onBlur, selectedValue }: import(".").SelectProps) => JSX.Element;
};
};
};
export declare const MultiSelect: {
(): JSX.Element;
story: {
title: string;
parameters: {
component: typeof MultipleAutocomplete;
};
};
};
export declare const MultiSelectRemote: {
(): JSX.Element;
story: {
title: string;
parameters: {
component: typeof MultipleAutocomplete;
};
};
};