/** * Coerce parsed JSON input into an array of objects: * - Single object {...} → [{...}] * - Array [{...}] → pass through * - Wrapped {items: [{...}]} → unwrap (matches list --json output) */ export declare function normalizeInput(input: unknown): Record[];