import { default as React } from 'react';
import { RGBChannel } from 'geostyler-style';
export interface RgbChannelFieldProps {
    sourceChannelNames?: string[];
    onChange?: (channelSelection: RGBChannel) => void;
    value?: RGBChannel;
}
/**
 * RgbChannelField to map different bands to rgb
 */
export declare const RgbChannelField: React.FC<RgbChannelFieldProps>;
