/** * Return the relative path from `from` to `to` based on current working directory. * * @param from path in current working directory * @param to path in current working directory */ export declare function relative(from: string, to: string): string;