/** * Tool Presets - Pre-defined tool sets for common pentest scenarios * * Each preset loads a curated set of tools optimized for a specific task. * This saves time and ensures the right tools are available. */ export interface Preset { name: string; description: string; tools: string[]; workflow?: string; } export declare const PRESETS: Record; /** * Get all preset names */ export declare function getPresetNames(): string[]; /** * Get preset by name */ export declare function getPreset(name: string): Preset | undefined; /** * Search presets by query */ export declare function searchPresets(query: string): Preset[]; /** * Get presets grouped by category */ export declare function getPresetsByCategory(): Record;