export interface EngagementScope { name?: string | undefined; authorizedTargets: string[]; excludedTargets?: string[] | undefined; allowedPhases?: Array<"recon" | "enumeration" | "authentication" | "exploitation" | "post-exploitation"> | undefined; allowedPorts?: number[] | undefined; allowedPaths?: string[] | undefined; allowedMethods?: string[] | undefined; maxRate?: number | undefined; maxConcurrency?: number | undefined; authorizationNote?: string | undefined; createdAt?: string | undefined; updatedAt?: string | undefined; expiresAt?: string | undefined; } export declare function loadScope(): Promise; export declare function saveScope(scope: EngagementScope): Promise; export declare function normalizeScopeTarget(target: string): string; export declare function addScopeTargets(targets: string[], patch?: Partial>): Promise; export declare function replaceScopeTargets(targets: string[], patch?: Partial>): Promise; export declare function clearScope(): Promise; export declare function getScopePath(): string; export declare function resetScopeCache(): void; export declare function getSessionScopePath(sessionId: string): string; export declare function loadScopeForSession(sessionId: string | undefined): Promise; export declare function saveSessionScope(sessionId: string, scope: EngagementScope): Promise; export declare function clearSessionScope(sessionId: string): Promise; export declare function releaseSessionScope(sessionId: string): Promise; export declare function addSessionScopeTargets(sessionId: string, targets: string[], patch?: Partial>): Promise; export declare function replaceSessionScopeTargets(sessionId: string, targets: string[], patch?: Partial>): Promise; export declare function resetSessionScopeCache(): void; export declare function isLoopbackScopeTarget(target: string): boolean; export declare function targetInScope(target: string, scope: EngagementScope): boolean; export declare function isScopeActive(scope: EngagementScope | undefined): scope is EngagementScope;