import { ChannelsSelect as ChannelSelectSpec } from '@slack/types'; import { ContainerProps } from './ContainerProps'; import { FC } from '..'; export interface ChannelSelectProps extends ContainerProps { initialChannel?: string; actionId?: string; } export declare const ChannelSelect: FC;