import { Point } from './point.interface'; import { ContactEventType } from './contact-event-type'; export declare class ContactEvent { type: ContactEventType; point: Point; constructor(type: ContactEventType, point: Point); }