import type { PathObject } from "./utils"; export declare const sep = "\\"; export declare const delimiter = ";"; export declare function resolve(...args: readonly string[]): string; export declare function normalize(path: string): string; export declare function isAbsolute(path: string): boolean; export declare function join(...args: readonly string[]): string; export declare function relative(from: string, to: string): string; export declare function _makeLong(path: string): string; export declare function dirname(path: string): string; export declare function basename(path: string, ext?: string): string; export declare function extname(path: string): string; export declare function format(pathObject: PathObject): string; export declare function parse(pathString: string): PathObject;