import * as React from 'react';
interface IProps {
    Show: boolean;
    Position?: ('top' | 'bottom' | 'left' | 'right');
    Target?: string;
    Zindex?: number;
    Class?: 'primary' | 'secondary' | 'success' | 'danger' | 'info';
}
export declare const Tooltip: React.FunctionComponent<IProps>;
export default Tooltip;
