import path from 'path'; export declare function convertToUnixPath(_path: string): string; export declare function convertToLocalFileSystemPath(_path: string): string; export declare function splitLocalPath(filepath: string, pathImplementation?: path.PlatformPath): Array; export declare function splitHubSpotPath(filepath: string): Array; export declare function getCwd(): string; export declare function getExt(filepath: string): string; export declare function getAllowedExtensions(allowList?: Array): Set; export declare function isAllowedExtension(filepath: string, allowList?: Array): boolean; export declare function getAbsoluteFilePath(_path: string): string; export declare function sanitizeFileName(fileName: string): string; export declare function isValidPath(_path: string): boolean; export declare function untildify(pathWithTilde: string): string;