import { Vec2, WorldCoordinates } from '@yandex/ymaps3-types/common/types'; /** * Divides a vector by a scalar and stores the result into a third vector. * * @param v The dividend vector. * @param n The scalar. * @param dst The vector the result will be stored to. * @returns `dst`. */ export declare function divn(v: Vec2, n: number, dst?: Vec2): Vec2; export declare function convertPixelSizeToWorldSize(pixel: Vec2, zoom: number, dst?: Vec2): WorldCoordinates;