import { default as React } from 'react';
import { SelectProps } from 'antd';
export type ChannelSelectionFieldProps = {
    channelOptions?: string[];
} & Omit<SelectProps<string>, 'options'>;
/**
 * ChannelSelectionField to select between different ChannelSelection options
 */
export declare const ChannelSelectionField: React.FC<ChannelSelectionFieldProps>;
