import type { Serializer } from "./Serializer.ts";
export declare class NoneSerializer<T = any> implements Serializer<T> {
    setState(rawState: any): void;
    getState(): any;
    patch(patches: any): void;
    teardown(): void;
    handshake(bytes: Uint8Array): void;
}
