/// import * as uui from '@epam/uui'; interface TooltipMods { /** * Defines component color. * @default 'gray' */ color?: 'white' | 'gray' | 'red' | uui.TooltipProps['color']; } /** Represents the properties of a Tooltip component. */ export interface TooltipProps extends uui.TooltipCoreProps, TooltipMods { } export declare const Tooltip: (props: TooltipProps & import("react").RefAttributes) => import("react").ReactElement>; export {}; //# sourceMappingURL=Tooltip.d.ts.map