/** * Given a path, converts it to absolute url based on the `baseUrl`. If baseUrl * is not provided, the result would be a rooted path (one that starts with `/`). * @param path The path to convert * @param baseUrl The base URL */ export declare function absolute(path: string, baseUrl?: string): string;