type Options = { removeExtension?: boolean; }; /** * Separate a file path into parts */ declare function getPathParts(filepath: string, options?: Options): Array; export { getPathParts, };