import { AgentMap, AgentSurface, ToolSurface } from "../core/types.js"; export type SurfaceContent = { surface: AgentSurface; content: string; }; export type RedTeamSurfaceProfile = { cwd: string; agentMap: AgentMap; promptSurfaces: SurfaceContent[]; modelCallSurfaces: SurfaceContent[]; retrievalSurfaces: SurfaceContent[]; toolSurfaces: Array<{ surface: ToolSurface; content: string; }>; memorySurfaces: SurfaceContent[]; terminalToolSurfaces: Array<{ surface: ToolSurface; content: string; }>; }; export declare function profileRedTeamSurfaces(cwd: string, agentMap: AgentMap): Promise;