export interface PathResolverOptions { outputDir?: string; extension?: string; rootPath?: string; } export declare function resolveOutputPath(inputPath: string, options?: PathResolverOptions): string; export declare function shouldIgnoreFile(filepath: string): boolean; export declare function isPugFile(filepath: string): boolean; export declare function getDirectory(filepath: string): string; export declare function joinPath(...segments: string[]): string; export declare function resolveAbsolutePath(filepath: string): string; //# sourceMappingURL=pathResolver.d.ts.map