import React from "react"; import { SelectProps as MDCSelectProps, SelectHelperTextProps } from "@material/react-select"; export type SelectOption = { value: string; label?: string; disabled?: boolean; }; export interface SelectProps extends Omit { label?: string; value: string; onChange: (e: React.FormEvent) => void; externalLabel?: boolean; large?: boolean; options: Array | Array; leadingIcon?: React.ReactElement; helperText?: string | React.ReactElement | null; isHelperTextPersistent?: boolean; noArrow?: boolean; color?: string; asteriskColor?: string; error?: boolean | string; customTrailingIcon?: boolean; } declare const Select: ({ label, value, onChange, helperText, isHelperTextPersistent, externalLabel, id, className, options, large, required, leadingIcon, noArrow, error, color, asteriskColor, customTrailingIcon, ...rest }: SelectProps) => React.JSX.Element; export default Select;