/** * Test Scenarios Index * * Aggregates and exports all test scenarios. * * @since v1.41.4 */ import type { TestScenario } from '../types.js'; /** * All available test scenarios */ export declare const allScenarios: TestScenario[]; /** * Get scenarios by category */ export declare function getScenariosByCategory(category: string): TestScenario[]; /** * Get scenarios by tag */ export declare function getScenariosByTag(tag: string): TestScenario[]; /** * Get scenario by ID */ export declare function getScenarioById(id: string): TestScenario | undefined; /** * Get all unique categories */ export declare function getCategories(): string[]; /** * Get all unique tags */ export declare function getTags(): string[]; /** * Format scenario list for display */ export declare function formatScenarioList(): string; export { navigationScenarios } from './navigation.js'; export { workflowScenarios } from './workflows.js'; //# sourceMappingURL=index.d.ts.map