Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
11 lines
559 B
Plaintext
11 lines
559 B
Plaintext
import { ReactElement, RefAttributes } from 'react';
|
|
import Select from './Select';
|
|
import { GroupBase } from './types';
|
|
import useAsync from './useAsync';
|
|
import type { AsyncProps } from './useAsync';
|
|
export type { AsyncProps };
|
|
declare type AsyncSelect = <Option = unknown, IsMulti extends boolean = false, Group extends GroupBase<Option> = GroupBase<Option>>(props: AsyncProps<Option, IsMulti, Group> & RefAttributes<Select<Option, IsMulti, Group>>) => ReactElement;
|
|
declare const AsyncSelect: AsyncSelect;
|
|
export { useAsync };
|
|
export default AsyncSelect;
|