type ValuesOf = T[keyof T]; export declare const markoRunFilePrefix = "__marko-run__"; export declare const virtualFilePrefix = "virtual:marko-run"; export declare const httpVerbs: readonly ["get", "head", "post", "put", "delete", "patch", "options"]; export declare const RoutableFileTypes: { readonly Page: "page"; readonly Layout: "layout"; readonly Handler: "handler"; readonly Middleware: "middleware"; readonly Meta: "meta"; readonly NotFound: "404"; readonly Error: "500"; }; export type RoutableFileType = ValuesOf; export type HttpVerb = (typeof httpVerbs)[number]; export {};