import * as React from 'react';
import { TooltipProps } from '@mui/material/Tooltip';
export type MdTooltipProps = React.PropsWithChildren<{
    type?: 'light' | 'dark';
}> & TooltipProps;
declare const MdTooltip: React.FC<MdTooltipProps>;
export default MdTooltip;
