geostyler
Version:
Framework for styling geodata
10 lines (9 loc) • 362 B
TypeScript
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>;