import * as React from 'react'; declare type PositionsType = 'top' | 'bottom' | 'right' | 'left' | 'top left' | 'top right' | 'bottom left' | 'bottom right'; interface StyleObject { wrapper?: React.CSSProperties; tooltip?: React.CSSProperties; } export interface ITooltipProps { message?: string; color?: string; iconWidth?: string; tooltipWidth?: string; tooltipMargin?: string; style?: StyleObject; position?: PositionsType; children?: React.ReactNode; } export declare const Icon: ({ color }: ITooltipProps) => JSX.Element; export declare const Tooltip: (props: ITooltipProps) => JSX.Element; export {}; //# sourceMappingURL=Tooltip.d.ts.map