import { EventActionCallable, EventActionHandlerCallableArgs } from "../types"; import { BlockAtomType } from "./state"; export interface BlockEditorEventActionCallableState { block: BlockAtomType; } export type BlockEventActionCallable = EventActionCallable;