import { default as React, ReactNode } from 'react'; export type InfoTipProps = { /** * className for the element. */ className?: string; /** * The content of the tooltip. */ content: ReactNode; }; export declare const InfoTip: ({ className, content, ...rest }: InfoTipProps) => React.JSX.Element; //# sourceMappingURL=InfoTip.d.ts.map