import { ActionInterface } from "./ActionInterface";
export interface ActionPlugin {
    registerActions(): Record<string, new () => ActionInterface>;
}
