import { StaticSelect, PlainTextElement } from '@slack/types'; import { FC } from '..'; import { InputOption } from './shared/inputOption'; export interface SelectElementProps { placeholder: PlainTextElement; actionId: string; options?: InputOption[]; optionGroups?: { label: PlainTextElement; options: InputOption[]; }[]; } export interface SingleSelectElementProps extends SelectElementProps { initialOption?: InputOption; } export declare const SingleSelectElement: FC;