/** * Critical Journey Template * Copy this template to define your critical user journeys */ import type { CriticalJourney } from '../../types/journey-types'; /** * Example: Homepage Visit Journey * Basic journey to verify homepage loads correctly */ export declare const EXAMPLE_HOMEPAGE_JOURNEY: CriticalJourney; /** * Example: User Login Journey * Critical authentication flow */ export declare const EXAMPLE_LOGIN_JOURNEY: CriticalJourney; /** * Example: API Health Check Journey * Verify critical API endpoints are responding */ export declare const EXAMPLE_API_HEALTH_JOURNEY: CriticalJourney; /** * Example: Form Submission Journey * Test complete form workflow */ export declare const EXAMPLE_FORM_SUBMISSION_JOURNEY: CriticalJourney; /** * Example: E-commerce Checkout Journey * Critical revenue-generating flow */ export declare const EXAMPLE_CHECKOUT_JOURNEY: CriticalJourney; /** * Template for your custom journey */ export declare const MY_CUSTOM_JOURNEY: CriticalJourney; /** * Export all example journeys for testing */ export declare const EXAMPLE_JOURNEYS: CriticalJourney[]; //# sourceMappingURL=template.d.ts.map