import { ElementBuilderBase } from '../internal/base'; import { ActionId, Confirm, End, FocusOnLoad, Blocks } from '../internal/methods'; import type { ConfirmationDialogBuilder } from '../bits'; import { ViewBlockBuilder } from '../internal'; export interface AddableParams { actionId?: string; placeholder?: string; minValue?: number; maxValue?: number; initialValue?: number; } export interface AddableInputBuilder extends Blocks, ActionId, Confirm, End, FocusOnLoad { } /** * @@link https://api.slack.com/reference/block-kit/block-elements#static_select * @@displayName Static Select */ export declare class AddableInputBuilder extends ElementBuilderBase { }