import { SeparatorPlugin, BlankPlugin, ImagePlugin, ImageJumpPlugin, VideoPlugin, MallH5Plugin, GroupGoodsPlugin, CarouselPlugin, TextNavigatorPlugin, RichPlugin, HotMapPlugin } from './display'; import SeparatorEdit from './edit/separator'; import BlankEdit from './edit/blank'; import ImageEdit from './edit/image'; import ImageJumpEdit from './edit/image-jump'; import VideoEdit from './edit/video'; import MallH5 from './edit/mall-h5'; import CarouselEdit from './edit/carousel'; import TextNavEdit from './edit/text-navigator'; import RichEdit from './edit/rich-text'; import HotMapEdit from './edit/hotmap'; import GroupGoodsEdit from './edit/group-goods'; declare const list: ({ group: string; plugins: ({ id: number; icon: string; selectIcon: string; name: string; isMini: boolean; editType: typeof ImageEdit; type: typeof ImagePlugin; originalDefaultProps: {}; selectBtn?: undefined; } | { id: number; icon: string; selectIcon: string; name: string; editType: typeof VideoEdit; type: typeof VideoPlugin; originalDefaultProps: {}; isMini?: undefined; selectBtn?: undefined; } | { id: number; icon: string; selectIcon: string; name: string; isMini: boolean; editType: typeof HotMapEdit; type: typeof HotMapPlugin; originalDefaultProps: {}; selectBtn?: undefined; } | { id: number; icon: string; selectIcon: string; name: string; isMini: boolean; editType: typeof BlankEdit; type: typeof BlankPlugin; selectBtn: boolean; originalDefaultProps?: undefined; } | { id: number; icon: string; selectIcon: string; name: string; isMini: boolean; type: typeof SeparatorPlugin; editType: typeof SeparatorEdit; selectBtn: boolean; originalDefaultProps?: undefined; } | { id: number; icon: string; selectIcon: string; name: string; isMini: boolean; editType: typeof CarouselEdit; type: typeof CarouselPlugin; originalDefaultProps: {}; selectBtn?: undefined; } | { id: number; icon: string; selectIcon: string; name: string; editType: typeof TextNavEdit; type: typeof TextNavigatorPlugin; originalDefaultProps: {}; isMini?: undefined; selectBtn?: undefined; } | { id: number; icon: string; selectIcon: string; name: string; editType: typeof RichEdit; type: typeof RichPlugin; originalDefaultProps: {}; isMini?: undefined; selectBtn?: undefined; })[]; } | { group: string; plugins: ({ id: number; icon: string; selectIcon: string; name: string; isMini: boolean; editType: typeof ImageJumpEdit; type: typeof ImageJumpPlugin; originalDefaultProps: {}; } | { id: number; icon: string; selectIcon: string; name: string; editType: typeof MallH5; type: typeof MallH5Plugin; originalDefaultProps: {}; isMini?: undefined; } | { id: number; icon: string; selectIcon: string; name: string; isMini: boolean; editType: typeof GroupGoodsEdit; type: typeof GroupGoodsPlugin; originalDefaultProps: {}; })[]; })[]; export default list;