/// <reference types="frida-gum" />
import { NativeStruct } from "../native-struct";
import { _Il2CppClass } from "./class";
import { _Il2CppObject } from "./object";
export declare class _Il2CppValueType extends NativeStruct {
    readonly klass: _Il2CppClass;
    constructor(handle: NativePointer, klass: _Il2CppClass);
    get class(): _Il2CppClass;
    get fields(): import("../../utils/accessor").Accessor<import("../interfaces").Valuable>;
    box(): _Il2CppObject;
}
