import { TypeBase } from './base'; /** * Any is just a empty class to allow chaining */ export declare class TypeAny extends TypeBase { /** * Constructor */ constructor(); _cast(): void; } declare const def: { Class: typeof TypeAny; }; export default def;