/** * Represents the label configuration for tour step actions. * * @public */ export interface ITourStepLabels { /** * The label for the "next" action. */ next: string; /** * The label for the "previous" action. */ previous: string; /** * The label for the "finish" action. */ finish: string; /** * The label for the "skip" action. */ skip: string; } //# sourceMappingURL=ITourStepLabels.d.ts.map