export type RoutingType = 'app' | 'pages' | 'unknown'; export declare function detectRoutingType(): Promise<{ type: RoutingType; basePath: string; }>; export declare function createDemoPage(options?: { videoImportPrefix?: string; }): Promise<{ success: boolean; route: string; }>;