export * from '@mui/material/Select'; import { SelectProps as MuiSelectProps } from '@mui/material/Select'; export type SelectProps = MuiSelectProps & { placeholder?: string; }; export declare const Select: ({ placeholder, ...props }: SelectProps) => React.JSX.Element; import type { Components } from "../../styles"; import React from 'react'; export declare const SelectThemeComponent: Components['MuiSelect'];