import type { PageAction } from '@tramvai/core'; import type { ActionsRegistry as Interface } from '@tramvai/tokens-common'; export declare const GLOBAL_PARAMETER = "@@global"; export declare class ActionRegistry implements Interface { private actions; constructor({ actionsList }: { actionsList: PageAction[]; }); add(type: string, actions: PageAction | PageAction[]): void; get(type: string, addingActions?: PageAction[]): PageAction[]; getGlobal(): PageAction[] | undefined; remove(type: string, actions?: PageAction | PageAction[]): void; } //# sourceMappingURL=actionRegistry.d.ts.map