import * as React from 'react'; import { SelectProps, InputBaseComponentProps, InputLabelProps } from '@mui/material'; export interface SelectItem { value: string | number; label?: string; disabled?: boolean; lang?: string; } export type GrepSelectProps = SelectProps & { label: string; outlined?: boolean; helperText?: string; errorMessage?: string; selectItems: SelectItem[]; unselectOption?: boolean; useCheckedSelect?: boolean; labelProps?: InputLabelProps; inputProps?: InputBaseComponentProps | undefined; }; declare const _default: React.ComponentType; export default _default;