1 | import Arc from '../components/Annotation/arc';
|
2 | import DataMarker from '../components/Annotation/dataMarker';
|
3 | import DataRegion from '../components/Annotation/dataRegion';
|
4 | import Image from '../components/Annotation/image';
|
5 | import Line from '../components/Annotation/line';
|
6 | import Region from '../components/Annotation/region';
|
7 | import Text from '../components/Annotation/text';
|
8 | declare const Guide: {
|
9 | (props: any): any;
|
10 | Arc: typeof Arc;
|
11 | DataMarker: typeof DataMarker;
|
12 | DataRegion: typeof DataRegion;
|
13 | Image: typeof Image;
|
14 | Line: typeof Line;
|
15 | Region: typeof Region;
|
16 | Text: typeof Text;
|
17 | };
|
18 | export default Guide;
|