import type { BaseStyleProps, PathStyleProps } from '../../shapes'; import { DisplayObject } from '../../shapes'; export interface LinesStyleProps extends BaseStyleProps { x?: number; y?: number; lines: PathStyleProps[]; areas: PathStyleProps[]; } export declare class Lines extends DisplayObject { private linesGroup; private areasGroup; constructor({ style, ...rest }: Partial>); render(): void; clear(): void; update(attr: Partial): void; private renderLines; private renderAreas; }