import { SelectProps as MuiSelectProps } from '@mui/material'; import React from 'react'; export declare type SelectProps = { options?: Array<{ label: React.ReactNode; value: string | number; }>; } & MuiSelectProps; export declare const Select: React.ForwardRefExoticComponent & React.RefAttributes>;