/** * Contains a skyline and a bottomline for a measure. */ export declare class SkyBottomLineCalculationResult { skyLine: number[]; bottomLine: number[]; constructor(skyLine: number[], bottomLine: number[]); }