import { Coordinate, Point } from '../../geo'; export type Event = { type: string; target: any; coordinate: Coordinate; containerPoint: Point; viewPoint: Point; domEvent: Event; }; export type Param = { type: string; target: any; geometry: any; coordinate: Coordinate; containerPoint: Point; viewPoint: Point; domEvent: MouseEvent; ignoreEndEvent?: boolean; interupted?: boolean; }; //# sourceMappingURL=CommonType.d.ts.map