import type { BuilderContextInterface } from '../context/types'; import type { BuilderBlock } from '../types/builder-block'; import type { TrackingContext } from './evaluate/helpers'; type Actions = { [index: string]: (event: Event) => any; }; export declare function getBlockActions(options: { block: BuilderBlock; stripPrefix?: boolean; trackingContext?: TrackingContext; } & Pick): Actions; export {};