/** * Check if link is absolute url * @param url */ export declare const isAbsoluteUrl: (url: string) => boolean; /** * Add Trailing slash * @param str */ export declare const addTrailingSlash: (str: string) => string; /** * format win32 path * @param pathStr * @returns */ export declare const formatPath: (pathStr: string) => string; export declare const getEntryUrl: (entries: string | Record) => string; /** * Currently single entry is supported. * @param entries * @returns */ export declare const isSingleEntry: (entries: string | Record) => boolean; export declare function getRelativePath(rootDir: string, path: string): string;