/**
 * @license
 * Copyright 2021 Google LLC
 * SPDX-License-Identifier: Apache-2.0
 */
/**
 * The interface for a workspace component that can be registered with the
 * ComponentManager.
 */
export interface IComponent {
    /**
     * The unique ID for this component that is used to register with the
     * ComponentManager.
     */
    id: string;
}
//# sourceMappingURL=i_component.d.ts.map