import { Number4 } from '../../../../../types/GlobalTypes';
export type QuadHalfEdgeSide = 's' | 'n' | 'w' | 'e';
export declare const CCW_HALF_EDGE_SIDES: QuadHalfEdgeSide[];
export interface HalfEdgeIndices {
    index0: number;
    index1: number;
}
export type NeighbourIndex = 0 | 1 | 2 | 3;
export declare const NEIGHBOUR_INDICES: NeighbourIndex[];
export declare function quadHalfEdgeIndices(quad: Number4, edgeIndex: number, target: HalfEdgeIndices): void;
