import React from "react"; export type SelectOption = { value: string; label?: string; disabled?: boolean; }; export interface SelectProps { label?: string; value: string | number; onChange: (value: string) => void; externalLabel?: boolean; large?: boolean; options: Array; leadingIcon?: React.ReactElement; helperText?: string | null; isHelperTextPersistent?: boolean; noArrow?: boolean; color?: string; asteriskColor?: string; itemHoverColor?: string; error?: boolean | string; trailingIcon?: React.ReactElement; bgColor?: string; colorError?: string; } declare const SelectV2: ({ options, value, onChange, color, itemHoverColor, noArrow, trailingIcon, bgColor, error, colorError, }: SelectProps) => React.JSX.Element; export default SelectV2;