import { ComponentProps } from 'react'; import type { Interpolation, Theme } from '@emotion/react'; interface TooltipProps extends ComponentProps<'div'> { css?: Interpolation; } declare const Tooltip: ({ children, css, ...props }: TooltipProps) => import("@emotion/react/jsx-runtime").JSX.Element; export { Tooltip }; //# sourceMappingURL=Tooltip.d.ts.map