/** * Custom props to add a coachmark to a topActions button * * @internal * @deprecated Use `IMultiStepCoachmark` from sp-coachmark-utility instead. TopActions now uses multi-step coachmarks from sp-coachmark-utility. */ export interface ITopActionsCoachmark { /** * The target property for the coachmark */ readonly topActionTitle: string; /** * A headline for the coachmark */ readonly headline: string; /** * The content for the coachmark */ readonly content: string; /** * The screen reader text for the coachmark */ readonly screenReaderText: string; /** * The key for the next coachmark target if multi-step coachmark */ readonly nextTarget?: string; } //# sourceMappingURL=ITopActionsCoachmark.d.ts.map