/** @packageDocumentation * @module ToolAssistance */ import "./Indicator.scss"; import * as React from "react"; import type { FooterIndicatorProps } from "../Indicator"; /** Properties of [[ToolAssistance]] component. * @internal */ export interface ToolAssistanceProps extends FooterIndicatorProps { /** Indicator label. */ children?: string; /** Indicator icons. */ icons?: React.ReactNode; /** Clickable part of the indicator. */ indicatorRef?: React.Ref; /** Function called when indicator is clicked. */ onClick?: () => void; } /** Tool assistance indicator used in [[Footer]] component. * @note Used with [[ToolAssistanceDialog]] component. * @internal */ export declare class ToolAssistance extends React.PureComponent { render(): JSX.Element; } //# sourceMappingURL=Indicator.d.ts.map