import type { PublishStepKind, PublishStepStatus } from './index.js'; /** * The label to show for a step, phrased for where that step currently is. An * optional note (such as how many data tags the step covers) sits with the * phrase, ahead of the marker for a running or failed step. */ export declare function publishStepDisplayName(kind: PublishStepKind, status: PublishStepStatus, note?: string): string; /** * How to refer to a step that another step is waiting for. The action phrasing * does not fit here: 'Waiting on database provisioning' reads as a sentence, * 'Waiting on Provisioning database(s)' does not. */ export declare function publishStepDependencyName(kind: PublishStepKind): string; //# sourceMappingURL=displayNames.d.ts.map