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