/** @packageDocumentation * @module ToolAssistance */ import "./Instruction.scss"; import * as React from "react"; import type { CommonProps } from "@itwin/core-react"; /** Properties of [[ToolAssistanceInstruction]] component. * @internal */ export interface ToolAssistanceInstructionProps extends CommonProps { /** Image for instruction */ image: React.ReactNode; /** Indicates whether instruction is new */ isNew?: boolean; /** Text for instruction */ text: string; } /** Tool assistance instruction used in [[ToolAssistanceDialog]] component. * @internal */ export declare class ToolAssistanceInstruction extends React.PureComponent { render(): React.JSX.Element; } //# sourceMappingURL=Instruction.d.ts.map