/** replace backslashes with forward slashes */ export declare const unixify: (filepath: string) => string; /** get a relative unix-style path between two existing paths */ export declare const relative: (from: string, to: string) => string;