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: (value: any) => void; externalLabel?: boolean; large?: boolean; options: Array | Array; leadingIcon?: React.ReactElement; helperText?: string | React.ReactElement | null; isHelperTextPersistent?: boolean; noArrow?: boolean; color?: string; error?: boolean | string; outlined?: boolean; } declare const SelectV2: ({ label, value, onChange, helperText, isHelperTextPersistent, externalLabel, id, className, options, large, required, leadingIcon, noArrow, error, color, outlined, ...rest }: SelectProps) => React.JSX.Element; export default SelectV2;