import { Vector2, Vector3 } from 'three';
import { NamedFunction2 } from './_Base';
export declare class manhattanDistanceVector2 extends NamedFunction2<[Vector2, Vector2]> {
    static type(): string;
    func(v1: Vector2, v2: Vector2): number;
}
export declare class manhattanDistanceVector3 extends NamedFunction2<[Vector3, Vector3]> {
    static type(): string;
    func(v1: Vector3, v2: Vector3): number;
}
