export class LineSetDescription {
    /**
     *
     * @type {string}
     */
    id: string;
    /**
     *
     * @type {LineDescription[]}
     */
    lines: LineDescription[];
    /**
     *
     * @type {LineSetDescription[]}
     */
    sets: LineSetDescription[];
    /**
     * Collect all lines from this set recursively
     * @param {LineDescription[]} destination
     * @param {number} [destinationOffset]
     */
    collect(destination: LineDescription[], destinationOffset?: number): number;
}
//# sourceMappingURL=LineSetDescription.d.ts.map