import * as Y from "yjs";
export declare const arrayToYArray: (array: any[]) => Y.Array<any>;
export declare const yArrayToArray: (yarray: Y.Array<any>) => any[];
export declare const objectToYMap: (object: any) => Y.Map<any>;
export declare const yMapToObject: (ymap: Y.Map<any>) => any;
export declare const yTextToString: (ytext: Y.Text) => string;
export declare const stringToYText: (string: string) => Y.Text;
