export declare class Constants {
    static api: {
        readonly baseUrl: "https://api.bentley.com/imodels";
        readonly version: "itwin-platform.v2";
    };
    static headers: {
        readonly accept: "Accept";
        readonly authorization: "Authorization";
        readonly contentType: "Content-Type";
        readonly prefer: "Prefer";
        readonly location: "Location";
    };
    static time: {
        readonly sleepPeriodInMs: 1000;
        readonly iModelInitializationTimeOutInMs: number;
    };
    static httpStatusCodes: {
        readonly internalServerError: 500;
    };
    static retryPolicy: {
        readonly maxRetries: 3;
        readonly baseDelayInMs: 300;
        readonly delayFactor: 3;
    };
}
//# sourceMappingURL=Constants.d.ts.map