import React, { PropsWithChildren } from "react"; export declare const SelectContext: React.Context<{}>; declare function Select({ children, onChange, defaultValue, label, }: PropsWithChildren<{ onChange?: (e: { target: { value: any; key: any; }; }) => void; defaultValue?: any; label?: string; }>): JSX.Element; export default Select;