/********************************************************************************
 * Copyright (c) 2019-2022 EclipseSource and others.
 *
 * This program and the accompanying materials are made available under the
 * terms of the Eclipse Public License v. 2.0 which is available at
 * https://www.eclipse.org/legal/epl-2.0, or the MIT License which is
 * available at https://opensource.org/licenses/MIT.
 *
 * SPDX-License-Identifier: EPL-2.0 OR MIT
 *******************************************************************************/
import { MaybePromise } from '@theia/core';
import { FrontendApplication, FrontendApplicationContribution } from '@theia/core/lib/browser';
import { WorkspaceService } from '@theia/workspace/lib/browser';
import { TheiaModelServerClientV2 } from '../common';
export declare class ModelServerFrontendContribution implements FrontendApplicationContribution {
    protected readonly workspaceService: WorkspaceService;
    protected readonly modelServerClient: TheiaModelServerClientV2;
    configure(_app: FrontendApplication): MaybePromise<void>;
    setup(): Promise<void>;
    waitForReady(ms?: number, numberOfTries?: number): Promise<boolean>;
}
//# sourceMappingURL=model-server-frontend-contribution.d.ts.map