import { default as React } from 'react'; import { default as TextField } from '@mui/material/TextField'; export type SelectOption = { id: number; label: string; }; interface SelectProps extends Omit, 'onChange'> { label: string; onChange: (value: number) => void; options: SelectOption[]; value: number | ''; } export declare const Select: ({ label, onChange, options, value, ...props }: SelectProps) => import("react/jsx-runtime").JSX.Element; export {};