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
9 lines
559 B
Plaintext
9 lines
559 B
Plaintext
import { ReactElement, RefAttributes } from 'react';
|
|
import { GroupBase } from './types';
|
|
import Select from './Select';
|
|
import type { StateManagerProps } from './useStateManager';
|
|
export type { StateManagerProps };
|
|
declare type StateManagedSelect = <Option = unknown, IsMulti extends boolean = false, Group extends GroupBase<Option> = GroupBase<Option>>(props: StateManagerProps<Option, IsMulti, Group> & RefAttributes<Select<Option, IsMulti, Group>>) => ReactElement;
|
|
declare const StateManagedSelect: StateManagedSelect;
|
|
export default StateManagedSelect;
|