export declare function check(data: {}, types: ITypeDescription[]): boolean;
export interface ITypeDescription {
    name: string;
    type?: string;
    classType?: any;
}
