import { EventActionCallable, EventActionHandlerCallableArgs } from "../types"; import { PageAtomType } from "./state"; import { TemplateModeAtomType } from "./hooks/useTemplateMode"; export interface PageEditorEventActionCallableState { page: PageAtomType; isTemplateMode: TemplateModeAtomType; } export type PageEventActionCallable = EventActionCallable;