import * as React from 'react'; import { ReactElement } from 'react'; declare type Props = { onClose: () => void; onOpen?: () => void; open: boolean; title?: string; content: string; classes: any; children: ReactElement; placement?: 'bottom-end' | 'bottom-start' | 'bottom' | 'left-end' | 'left-start' | 'left' | 'right-end' | 'right-start' | 'right' | 'top-end' | 'top-start' | 'top'; }; declare const _default: React.ComponentType, "title" | "children" | "open" | "content" | "onClose" | "onOpen" | "placement"> & import("@material-ui/styles").StyledComponentProps<"tooltip"> & object>; export default _default;