import { SelectProps as MuiSelectProps } from '@mui/material'; import { ReactNode } from 'react'; export type SelectProps = { endLabel?: ReactNode; helperText?: ReactNode; selectStyleProps?: Pick; } & MuiSelectProps; export declare function Select({ label, endLabel, disabled, helperText, children, sx, style, className, selectStyleProps, ...props }: SelectProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=Select.d.ts.map