import { type SelectProps } from "@mui/material/Select"; type AdornedSelectProps = { labelValue: string; labelId: string; } & SelectProps; export default function AdornedSelect({ labelValue, ...props }: AdornedSelectProps): import("react/jsx-runtime").JSX.Element; export {};