import { NativeStruct } from "../native-struct";
import { _Il2CppObject } from "./object";
export declare class _Il2CppString extends NativeStruct {
    get content(): string | null;
    set content(value: string | null);
    get length(): number;
    get object(): _Il2CppObject;
    static from(content: string): _Il2CppString;
    toString(): string | null;
}
