/** * Example Usage: Journey Testing Framework * Demonstrates how to use the Playwright-based journey testing */ import { type CriticalJourney } from './index'; /** * Example: Check if Playwright is ready */ export declare function checkPlaywrightSetup(): Promise; /** * Example: Define critical journeys */ export declare function defineExampleJourneys(): CriticalJourney[]; /** * Example: Execute journeys */ export declare function runJourneyTests(): Promise; /** * Example: Single journey execution */ export declare function runSingleJourney(): Promise; //# sourceMappingURL=example-usage.d.ts.map