import { BlockBuilderBase } from '../internal/base'; import { BlockId, Elements, End } from '../internal/methods'; import type { ActionsElementBuilder } from '../internal/types'; export interface ActionsParams { blockId?: string; } export interface ActionsBuilder extends BlockId, End, Elements { } /** * @@link https://api.slack.com/reference/block-kit/blocks#actions * @@displayName Actions */ export declare class ActionsBuilder extends BlockBuilderBase { }