export declare class LiveStateData { /** * Unique identifier to identify the state data you are syncing. */ liveStateDataId: string; /** * The data that you want to be synced across clients on the given document. * */ data: string | number | boolean | JSON; }