export declare function parse(string: string): StepName; export declare function coerce(stepNameOrString: StepName | string): StepName; /** * Creates a step name. Use this as tagged template string. */ export declare function named(parts: TemplateStringsArray, ...placeholders: string[]): StepName; export declare function format(stepName: StepName | string, { colors }?: { colors?: boolean | undefined; }): string; /** * @public */ export declare class StepName { parts: string[]; placeholders: string[]; /** * @internal */ constructor(parts: string[], placeholders: string[]); toString(): string; } //# sourceMappingURL=StepName.d.ts.map