/** * Transform a path using a custom function */ declare function transformPath(filepath: string, transformPart: (part: string) => string): string; export { transformPath, };