export declare function clientDir(): string; /** * Where an asset actually comes from, or null when nothing can answer for it. * * Exported because the page's test asks the same question: every file the shell * links has to be one this can find, and a stylesheet renamed without its link * should fail the build rather than the browser. */ export declare function clientAsset(name: string): { path: string; } | null; export declare function serveClient(name: string): Response;