import { NeighbourIndex } from './QuadGraphCommon';
export interface QuadHalfEdgeOptions {
    quadId: number;
    index0: number;
    index1: number;
    sideIndex: NeighbourIndex;
}
export declare class QuadHalfEdge {
    readonly quadId: number;
    readonly index0: number;
    readonly index1: number;
    readonly sideIndex: NeighbourIndex;
    constructor(options: QuadHalfEdgeOptions);
}
