import { type SelectProps } from "@mui/material/Select"; import { type SxProps } from "@mui/material/styles"; import { type MenuSelectClasses } from "./MenuSelect.classes"; export interface MenuSelectProps extends Omit, "margin" | "variant" | "size" | "classes"> { /** An optional tooltip to show when hovering over this Select. */ tooltipTitle?: string; /** Override or extend existing styles. */ classes?: Partial; /** Provide custom styles. */ sx?: SxProps; } /** A Select that is styled to work well with other menu bar controls. */ export default function MenuSelect(inProps: MenuSelectProps): import("react/jsx-runtime").JSX.Element;