import { FC } from '..'; import { ImageElement as ImageElementSpec, Button as ButtonSpec, Button, Overflow, Datepicker, Select, MultiSelect, Action } from '@slack/types'; export declare type ActionType = 'button'; export declare type ActionSpec = ButtonSpec; export declare type ElementType = 'image' | 'user' | ActionType; export declare type ElementSpec = ImageElementSpec | Button | Overflow | Datepicker | Select | MultiSelect | Action; export declare type BlockElement
= FC
;