import type { OrchestratorIntentStatus } from '../../clients/orchestrator/types.js'; import type { IntentStatus } from './types.js'; export declare function classifyIntentStatus(status: OrchestratorIntentStatus): IntentStatus; export declare function getIntentRetryDelay(input: { readonly error: unknown; readonly now: number; readonly minimum: number; readonly fallback: number; }): { readonly delay: number; readonly backoff: boolean; } | undefined; //# sourceMappingURL=status-policy.d.ts.map