import { ReactNode } from 'react'; import { TypographyProps } from '@mui/material'; export interface ILabelProps extends TypographyProps { label?: string; required?: boolean; icon?: ReactNode; } declare const Label: ({ label, required, icon, ...otherProps }: ILabelProps) => import("react/jsx-runtime").JSX.Element; export default Label;