import { ConversationsSelect as ConversationsSelectSpec } from '@slack/types'; import { ContainerProps } from './ContainerProps'; import { FC } from '..'; export interface ConversationSelectProps extends ContainerProps { initialConversation?: string; actionId: string; filter?: { include?: ('im' | 'mpim' | 'private' | 'public')[]; excludeExternalSharedChannels?: boolean; excludeBotUsers?: boolean; }; exclude_external_shared_channels?: boolean; exclude_bot_users?: boolean; responseUrlEnabled?: boolean; } export declare const ConversationsSelect: FC;