import { Database, Environment, UrlBuilderInitParams } from "./types";
export declare class UrlBuilder {
    protected readonly versionNumber = 1;
    protected readonly containerName: string;
    protected readonly environment: Environment;
    protected readonly database: Database;
    constructor(initParams: UrlBuilderInitParams);
    protected getBasePath(): string;
    /** Records */
    getModifyRecordsPath(): string;
    getQueryRecordsPath(): string;
    getLookupRecordsPath(): string;
    getResolveRecordsPath(): string;
    getShareAcceptPath(): string;
    /** Assets */
    getUploadAssetsPath(): string;
}
