import type { HandlerContext } from "../../types.js"; export type DevFilePathValidationResult = Readonly<{ kind: "ready"; path: string; }> | Readonly<{ kind: "rejected"; message: string; }>; export declare function validateDevFilePath(encoded: string, ctx: HandlerContext): Promise; //# sourceMappingURL=path-validator.d.ts.map