import { BehaviorSubject } from 'rxjs';
export type JsonCrdtPatchView = 'index' | 'verbose' | 'compact' | 'binary' | 'indexed' | 'sidecar' | 'text';
export declare class JsonCrdtPatchState {
    readonly show$: BehaviorSubject<boolean>;
    readonly view$: BehaviorSubject<JsonCrdtPatchView>;
    readonly toggleShow: () => void;
    readonly setView: (view: JsonCrdtPatchView) => void;
}
