import RuntimeTypeErrorItem from '../errorReporting/RuntimeTypeErrorItem'; import Type from './Type'; export default class AnyType extends Type { typeName: string; errors(): Iterable; accepts(input: any): input is T; get acceptsSomeCompositeTypes(): boolean; toString(): string; }