/** * Get a file basename from a file path (without a file extension) * * @param filepath Input filepath */ export declare const getFileName: (filepath: string) => string; /** * Get a file basename from a file path (without a file name and file extension) * * @param filepath Input filepath */ export declare const getFilePath: (filepath: string) => string; /** * Get a file extension from a file path * * @param filepath Input filepath */ export declare const getFileExtension: (filepath: string) => string; /** * Check if a file path is a directory * * @param filepath Input filepath */ export declare const isDirectory: (filepath: string) => boolean;