import { SelectProps } from '@mui/base/Select'; import { BoxProps } from '../Box'; import React from 'react'; export type SelectOption = { key: V; value: string | React.ReactNode; } & { [key in string]?: any; }; interface Props extends SelectProps { options?: SelectOption[]; fullWidth?: boolean; px?: number; height?: number; /** Distance between a popup and the trigger element */ popupOffset?: number; sx?: BoxProps['sx']; } export declare function Select({ options, fullWidth, px, height, popupOffset, listBoxSx, ...props }: Props & { listBoxSx?: BoxProps['sx']; }): JSX.Element; export {};