import React from "react"; interface SelectProps { label: string; value?: string; valueKey?: string; defaultValue?: string; updateValue: (value: any) => void; options?: Array; disabled?: boolean; children?: Array | React.ReactElement<"optgroup">>; className?: string; } declare const _default: React.MemoExoticComponent<({ label, value, valueKey, defaultValue, updateValue, options, children, className }: SelectProps) => React.JSX.Element>; export default _default;