import * as React from 'react'; interface SelectContextProps { selectPropsArr?: object[]; multiple?: boolean; defaultValue?: string | string[]; key: string | number | React.ReactNode; isShowDrop?: boolean; value?: string; onChangeSelectValue: (props: any, nativeProps: any, isFirstChagne: boolean) => void; } export declare const SelectContext: React.Context; export {};