import { NativeStruct } from "../native-struct";
import { _Il2CppClass } from "./class";
import { _Il2CppGenericClass } from "./generic-class";
import { _Il2CppTypeEnum } from "./type-enum";
export declare class _Il2CppType extends NativeStruct {
    get class(): _Il2CppClass;
    get dataType(): _Il2CppType | null;
    get genericClass(): _Il2CppGenericClass | null;
    get isByReference(): boolean;
    get name(): string;
    get typeEnum(): _Il2CppTypeEnum;
}
