export class PropertySetSerializationAdapter extends BinaryClassSerializationAdapter {
    klass: typeof PropertySet;
    /**
     *
     * @param {BinaryBuffer} buffer
     * @param {PropertySet} value
     */
    serialize(buffer: BinaryBuffer, value: PropertySet): void;
    /**
     *
     * @param {BinaryBuffer} buffer
     * @param {PropertySet} value
     */
    deserialize(buffer: BinaryBuffer, value: PropertySet): void;
}
import { BinaryClassSerializationAdapter } from "../storage/binary/BinaryClassSerializationAdapter.js";
import PropertySet from "./PropertySet.js";
//# sourceMappingURL=PropertySetSerializationAdapter.d.ts.map