import { PropertyMetaInformation } from './PropertyMetaInformation';
export type TypeMetaInformation = {
    typeName: string;
    originalTypeName: string;
    isArray: boolean;
    isNullable: boolean;
    properties: PropertyMetaInformation[];
    genericTypeArguments: TypeMetaInformation[];
};
