import type { ProjectManifest, PageManifest, QueryManifest } from '../../runtime/lib/types'; import type { Config } from '../config'; export type { ProjectManifest, PageManifest, QueryManifest }; /** * Walk down the routes directory and build a normalized description of the project's * filesystem. */ export declare function load_manifest(args: { config: Config; includeArtifacts?: boolean; }): Promise; export declare function extractQueries(source: string): Promise;