/** * Delegation Format Validator * * Validates that orchestrator delegations follow the 6-section format. * Hard gate: blocks malformed delegations and posts warning to channel. */ export interface DelegationValidation { valid: boolean; missingSections: string[]; } /** * Check if a message is a delegation attempt (contains at least one section header). * Messages without any section headers are regular chat, not delegation attempts. * Uses stricter pattern matching to reduce false positives. */ export declare function isDelegationAttempt(content: string): boolean; /** * Validate that a delegation message contains all 6 required sections. * Returns { valid: true } if all sections present, or lists missing ones. */ export declare function validateDelegationFormat(content: string): DelegationValidation; //# sourceMappingURL=delegation-format-validator.d.ts.map