import { TooltipProps } from '@material-ui/core'; /** * This is just a wrapper around MUI Tooltip component. It's only purpose it to call * setIsFullscreenModalMode function (https://www.notion.so/corva/Dev-Center-apps-fullscreen-modals-924d8de0cb334c2eb6530081934d50b5) * automatically to not make Corva users bother with calling it manually. It has exactly the same API as MUI Tooltip. * This component should be used only inside of DC apps. * In other cases, regular MUI tooltip should be the choice. * Read https://dc-docs.qa.corva.ai/docs/Frontend/App%20Basics/App%20Fullscreen%20Modals/ for more info */ export declare const DcTooltip: ({ onOpen: onOpenProp, onClose: onCloseProp, open: openProp, title: titleProp, TransitionProps, ...rest }: TooltipProps) => JSX.Element; //# sourceMappingURL=DcTooltip.d.ts.map