import React from 'react';
import { PlacementWithLogical } from '@chakra-ui/react';
export interface Props {
    title?: string;
    body: string;
    trigger: React.ReactElement;
    type?: PlacementWithLogical;
}
export declare const Tooltip: ({ title, body, trigger, type }: Props) => JSX.Element;
