import { FC } from '..'; import { PlainTextInput as PlainTextInputSpec } from '@slack/types'; export interface PlainTextInputProps { placeholderText?: string; initialValue?: string; multiline?: boolean; minLength?: number; maxLength?: number; actionId?: string; } export declare const PlainTextInputElement: FC;