/** * Spec normalization service. * * Converts shorthand step notations to full canonical form. */ import type { Step, NormalisedStep, SelectorSpec } from "../../domain/index"; /** * Normalise steps by expanding shorthand notations. */ export declare function normaliseSteps(steps: readonly Step[]): NormalisedStep[]; /** * Normalise a single step by expanding shorthand notations. */ export declare function normaliseStep(step: Step): NormalisedStep; /** * Extract selector fields from a command params object. */ export declare function extractSelector(params: Record | string): SelectorSpec | string; //# sourceMappingURL=normalizer.d.ts.map