import type { TID } from "@svar-ui/lib-state"; import type { IDataHash } from "../types"; import { IOptionConfig } from "./menuOptions"; import { IButtonConfig } from "./toolbarButtons"; type TTarget = TID | IDataHash | null; export declare function handleAction(api: any, action: string, target: TTarget, _: any): void; export declare function isHandledAction(options: IOptionConfig[] | IButtonConfig[], id: TID): boolean; export {};