import type { HtmxxFile } from './interfaces'; export declare function isHTML(filename: string): boolean; export declare function getMethod(filename: string): string; export declare function isHidden(filename: string): boolean; export declare function getEndpoint(filename: string): string | undefined; export declare function isVariable(filename: string): RegExpExecArray | null; export declare function closestErrorFile(routes: HtmxxFile[], depth: number): HtmxxFile | undefined; export declare function getRoute(path: string, baseRoute: string): string; export declare function getParams(route: string, file: HtmxxFile): Record; export declare function buildRouteRegex(route: string): RegExp;