import { ReactElement } from 'react';
interface Props {
    title: string;
    children: ReactElement;
}
export declare function ToolTipCustom({ title, children }: Props): ReactElement;
export {};
