/** * Workflow Guide Tool * Provides guidance on optimal tool usage patterns and workflows */ export interface WorkflowScenario { name: string; description: string; steps: WorkflowStep[]; tips?: string[]; } export interface WorkflowStep { order: number; tool: string; parameters?: Record; description: string; condition?: string; } export declare const WORKFLOW_SCENARIOS: Record; export declare function getWorkflowGuide(scenario?: string): WorkflowScenario | Record; export declare function getWorkflowTips(): Record; //# sourceMappingURL=workflowGuide.d.ts.map