/** * Normalizes statuses from earlier API contracts. * * This can be removed after Aug, 2026 * * @param status - Workflow status from the API * @returns Normalized workflow status */ export declare const normalizeWorkflowStatus: (status: T) => T | "continued_as_new" | "cancelled";