import { ElementBuilderBase } from '../internal/base'; import { Prop } from '../internal/constants'; import { ActionId, Confirm, End, FocusOnLoad, InitialChannels, MaxSelectedItems, Placeholder, SetTeam, TextProps } from '../internal/methods'; import type { ConfirmationDialogBuilder } from '../bits'; import { ElementTeamParams } from '../internal'; import { Channel } from 'fox-loop-sdk'; export interface ChannelMultiSelectParams { actionId?: string; maxSelectedItems?: number; placeholder?: string; [Prop.TextProps]?: (keyof Channel)[]; [Prop.Team]?: ElementTeamParams; } export interface ChannelMultiSelectBuilder extends ActionId, Confirm, End, FocusOnLoad, InitialChannels, MaxSelectedItems, Placeholder, TextProps, SetTeam { } /** * @@link https://api.slack.com/reference/block-kit/block-elements#channel_multi_select * @@displayName Channel Multi-Select */ export declare class ChannelMultiSelectBuilder extends ElementBuilderBase { }