declare class UrlUtil { join(path: string, host: string): string; toRecordCommentUrl(host: string, baseId: string, tableId: string, rowId: string, commentId: string): string; toRecordColumnUrl(host: string, baseId: string, tableId: string, rowId: string, columnId: string): string; toRecordUrl(host: string, baseId: string, tableId: string, rowId: string): string; toWorkspaceUrl(host: string, workspaceId: string): string; toBaseUrl(host: string, baseId: string): string; combineURLs(baseURL: string, relativeURL?: string): string; } export declare const urlUtil: UrlUtil; export {};