import { AgentSurface, RedTeamCaseClass } from "../core/types.js"; export declare const BOUNDARY_RE: RegExp; export declare const SECRET_BOUNDARY_RE: RegExp; export declare const TERMINAL_SURFACE_RE: RegExp; export declare const OVER_REFUSAL_RE: RegExp; export declare const MEMORY_BOUNDARY_RE: RegExp; export declare function createCaseId(caseClass: RedTeamCaseClass, ...parts: string[]): string; export declare function createAttemptId(caseId: string, strategy: string, ordinal: number, summary: string): string; export declare function truncateEvidence(value: string, limit?: number): string; export declare function evidenceFor(surface: AgentSurface, content: string, pattern: RegExp): string; export declare function hasInstructionBoundary(content: string): boolean; export declare function hasSecretBoundary(content: string): boolean;