import { IModel } from '@dolittle/sdk.common'; import { IEventTypes } from '../IEventTypes'; /** * Represents a builder that can build {@link IEventTypes} from an {@link IModel}. */ export declare class EventTypesModelBuilder { private readonly _model; /** * Initialises a new instance of the {@link EventTypesModelBuilder} class. * @param {IModel} _model - The built application model. */ constructor(_model: IModel); /** * Builds an {@link IEventTypes} from the associated and registered event types. * @returns {IEventTypes} The built event types. */ build(): IEventTypes; } //# sourceMappingURL=EventTypesModelBuilder.d.ts.map