import type { ControlInstallationService } from "./installation-service.js"; import type { ControlInstallationCatalogReader } from "./installation-catalog.js"; export declare function isInstallationPath(pathname: string): boolean; interface InstallationRequest { pathname: string; method?: string; body(): Promise>; service?: ControlInstallationService; catalog?: Pick; allowCredentials: boolean; } export declare function handleInstallationRequest(input: InstallationRequest): Promise<{ status: number; body: unknown; }>; export {}; //# sourceMappingURL=installation-api.d.ts.map