import React from 'react'; import { RowProps } from '../Layout/Row'; import { PopoverProps } from '../Popover'; interface TooltipProps extends Omit { text: string; } export declare function Tooltip({ text, ...rest }: TooltipProps): React.JSX.Element; export declare function MouseoverTooltip({ children, ...rest }: Omit): React.JSX.Element; export declare type InfoCircleProps = { label: string; size?: number; } & RowProps; export declare function InfoCircle({ label, size, ...boxProps }: InfoCircleProps): React.JSX.Element; export {}; //# sourceMappingURL=index.d.ts.map