export declare const types: string[];
export declare const methods: {
    string: {
        indexer: string;
        get: string;
        set: string;
        copy: (value: string) => string;
    };
    number: {
        indexer: string;
        get: string;
        set: string;
        copy: (value: number) => number;
    };
    boolean: {
        indexer: string;
        get: string;
        set: string;
        copy: (value: boolean) => boolean;
    };
    object: {
        indexer: string;
        get: string;
        set: string;
        copy: (value: object) => {};
    };
    array: {
        indexer: string;
        get: string;
        set: string;
        copy: (value: any[]) => any[];
    };
};
//# sourceMappingURL=constants.d.ts.map