import Type from './Type'; import Validation, { IdentifierPath } from '../Validation'; import RuntimeTypeErrorItem from '../errorReporting/RuntimeTypeErrorItem'; export default class MergedObjectType> extends Type { typeName: string; readonly objects: Type[]; readonly exact: boolean; private resolved; constructor(objects: Type[], exact?: boolean); resolveType(): Type; errors(validation: Validation, path: IdentifierPath, input: any): Iterable; accepts(input: any): input is T; get acceptsSomeCompositeTypes(): boolean; toString(options?: { formatForMustBe?: boolean; }): string; }