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<HTMLElement | null>;
}
export declare const SelectContext: React.Context<SelectConfig>;
export declare const useSelectContext: () => SelectConfig;
