export declare const HANDOFF_COMPILER_SCHEMA = "osc.handoff-compiler.v1"; export interface HandoffCompilerInput { state: string; decisions?: string[]; blockers?: string[]; evidenceRefs?: string[]; nextActions?: string[]; maxChars?: number; reason?: string; } export interface HandoffValidation { status: 'pass' | 'fail'; missingSections: string[]; length: number; maxChars: number; overBudget: boolean; } export declare function redactPacketText(value: string, max?: number, fallback?: string): string; export declare function validateHandoffPacket(content: string, options?: { maxChars?: number; }): HandoffValidation; export declare function compileHandoffPacket(input: HandoffCompilerInput): { schema: string; content: string; budget: { maxChars: number; length: number; }; validation: HandoffValidation; boundary: { compact_handoff_only: boolean; not_raw_log_dump: boolean; not_approval: boolean; }; };