import { StorageDebugView } from "./storage_debug_view.js"; import { AuthorMarker, BlockOutputsBase, BlockState, NavigationState, StringifiedJson } from "@milaboratories/pl-model-common"; import { Optional } from "utility-types"; //#region src/block_state.d.ts type BlockStateInternal = Optional>, "outputs">; type BlockStateInternalV3 = { /** Raw block storage - UI derives data using sdk/model */readonly blockStorage: unknown; /** Storage debug view (JSON string) for block debug panel. */ readonly storageDebugView?: StringifiedJson; /** Outputs rendered with block config */ outputs?: Outputs; /** Current navigation state */ readonly navigationState: NavigationState; readonly author: AuthorMarker | undefined; }; //#endregion export { BlockStateInternal, BlockStateInternalV3 }; //# sourceMappingURL=block_state.d.ts.map