import { IRoundedRect } from './rounded-rect';
import { Arc } from './arc';
import { Line } from './line';
export declare class ShapeParser {
    /**
     * Parses the rounded rectangle into its constituent segments (arcs and lines).
     * @param rect - The rounded rectangle to parse.
     * @returns An array of arcs and lines representing the rectangle.
     */
    static parseRoundedRect(rect: IRoundedRect): (Arc | Line)[];
}
