import React, { MutableRefObject } from 'react'; import { NormalSizes } from '../utils/prop-types'; export interface SelectConfig { value?: string | string[]; updateValue?: Function; visible?: boolean; updateVisible?: Function; size?: NormalSizes; disableAll?: boolean; ref?: MutableRefObject; } export declare const SelectContext: React.Context; export declare const useSelectContext: () => SelectConfig;