import { ConfigurationBaseService } from '@o3r/configuration';

/**
 * Fixture file for configuration service
 */
declare class ConfigurationBaseServiceFixture implements Readonly<ConfigurationBaseService> {
    /** @inheritDoc */
    updateConfiguration: jest.Mock<any, any>;
    /** @inheritDoc */
    upsertConfiguration: jest.Mock<any, any>;
    /** @inheritDoc */
    computeConfiguration: jest.Mock<any, any>;
    /** @inheritDoc */
    getConfigFromBodyTag: jest.Mock<any, any>;
    /** @inheritDoc */
    extendConfiguration: jest.Mock<any, any>;
    /** @inheritDoc */
    getComponentConfig: jest.Mock<any, any>;
    /** @inheritDoc */
    getConfig: jest.Mock<any, any>;
}

export { ConfigurationBaseServiceFixture };
//# sourceMappingURL=o3r-configuration-fixtures-jest.d.ts.map
