import { Vector2 } from '../../Math';
export interface IDistancePosition {
    distance: number;
    position: Vector2;
}
