import type { FC, Key } from 'react'; import type { ApiType } from './../../../../shared'; import type { OptionsProp } from './../../../../shared/src/hooks/useOptions/types'; export interface ChainSelectProps { value?: Key[]; options?: ApiType; mode?: 'edit' | 'read' | 'update'; optionsProp?: OptionsProp; onChange?: (value: Key[]) => void; } export declare const ChainSelect: FC;