import type { IGroup, IContext2d, IGroupGraphicAttribute, IMarkAttribute, IGraphicAttribute, IThemeAttribute, IGroupRenderContribution, IDrawContext, IRectGraphicAttribute } from './../../../vrender'; import { BaseRenderContributionTime } from './../../../vrender'; export declare class SplitGroupBeforeRenderContribution implements IGroupRenderContribution { time: BaseRenderContributionTime; useStyle: boolean; order: number; drawShape(group: IGroup, context: IContext2d, x: number, y: number, doFill: boolean, doStroke: boolean, fVisible: boolean, sVisible: boolean, groupAttribute: Required, drawContext: IDrawContext, fillCb?: (ctx: IContext2d, markAttribute: Partial, themeAttribute: IThemeAttribute) => boolean, strokeCb?: (ctx: IContext2d, markAttribute: Partial, themeAttribute: IThemeAttribute) => boolean, doFillOrStroke?: { doFill: boolean; doStroke: boolean; }): void; } export declare class SplitGroupAfterRenderContribution implements IGroupRenderContribution { time: BaseRenderContributionTime; useStyle: boolean; order: number; drawShape(group: IGroup, context: IContext2d, x: number, y: number, doFill: boolean, doStroke: boolean, fVisible: boolean, sVisible: boolean, groupAttribute: Required, drawContext: IDrawContext, fillCb?: (ctx: IContext2d, markAttribute: Partial, themeAttribute: IThemeAttribute) => boolean, strokeCb?: (ctx: IContext2d, markAttribute: Partial, themeAttribute: IThemeAttribute) => boolean): void; } export declare function getWidthInfo(widthArray: number[] | number): { isSplitDraw: boolean; width: number; } | { isSplitDraw: boolean; width?: undefined; }; export declare function renderStroke(group: IGroup, context: IContext2d, x: number, y: number, groupAttribute: Required | Required, stroke: boolean | [boolean, boolean, boolean, boolean], strokeArrayWidth: [number, number, number, number] | undefined, strokeArrayColor: [string, string, string, string] | undefined, width: number, height: number, isHighlight?: boolean, part?: ([number, number] | undefined)[]): void; export declare class DashGroupBeforeRenderContribution implements IGroupRenderContribution { time: BaseRenderContributionTime; useStyle: boolean; order: number; drawShape(group: IGroup, context: IContext2d, x: number, y: number, doFill: boolean, doStroke: boolean, fVisible: boolean, sVisible: boolean, groupAttribute: Required, drawContext: IDrawContext, fillCb?: (ctx: IContext2d, markAttribute: Partial, themeAttribute: IThemeAttribute) => boolean, strokeCb?: (ctx: IContext2d, markAttribute: Partial, themeAttribute: IThemeAttribute) => boolean, doFillOrStroke?: { doFill: boolean; doStroke: boolean; }): void; } export declare class DashGroupAfterRenderContribution implements IGroupRenderContribution { time: BaseRenderContributionTime; useStyle: boolean; order: number; drawShape(group: IGroup, context: IContext2d, x: number, y: number, doFill: boolean, doStroke: boolean, fVisible: boolean, sVisible: boolean, groupAttribute: Required, drawContext: IDrawContext, fillCb?: (ctx: IContext2d, markAttribute: Partial, themeAttribute: IThemeAttribute) => boolean, strokeCb?: (ctx: IContext2d, markAttribute: Partial, themeAttribute: IThemeAttribute) => boolean): void; } export declare class AdjustPosGroupBeforeRenderContribution implements IGroupRenderContribution { time: BaseRenderContributionTime; useStyle: boolean; order: number; drawShape(group: IGroup, context: IContext2d, x: number, y: number, doFill: boolean, doStroke: boolean, fVisible: boolean, sVisible: boolean, groupAttribute: Required, drawContext: IDrawContext, fillCb?: (ctx: IContext2d, markAttribute: Partial, themeAttribute: IThemeAttribute) => boolean, strokeCb?: (ctx: IContext2d, markAttribute: Partial, themeAttribute: IThemeAttribute) => boolean, doFillOrStroke?: { doFill: boolean; doStroke: boolean; }): void; } export declare class AdjustPosGroupAfterRenderContribution implements IGroupRenderContribution { time: BaseRenderContributionTime; useStyle: boolean; order: number; drawShape(group: IGroup, context: IContext2d, x: number, y: number, doFill: boolean, doStroke: boolean, fVisible: boolean, sVisible: boolean, groupAttribute: Required, drawContext: IDrawContext, fillCb?: (ctx: IContext2d, markAttribute: Partial, themeAttribute: IThemeAttribute) => boolean, strokeCb?: (ctx: IContext2d, markAttribute: Partial, themeAttribute: IThemeAttribute) => boolean): void; } export declare class AdjustColorGroupBeforeRenderContribution implements IGroupRenderContribution { time: BaseRenderContributionTime; useStyle: boolean; order: number; drawShape(group: IGroup, context: IContext2d, x: number, y: number, doFill: boolean, doStroke: boolean, fVisible: boolean, sVisible: boolean, groupAttribute: Required, drawContext: IDrawContext, fillCb?: (ctx: IContext2d, markAttribute: Partial, themeAttribute: IThemeAttribute) => boolean, strokeCb?: (ctx: IContext2d, markAttribute: Partial, themeAttribute: IThemeAttribute) => boolean, doFillOrStroke?: { doFill: boolean; doStroke: boolean; }): void; } export declare class AdjustColorGroupAfterRenderContribution implements IGroupRenderContribution { time: BaseRenderContributionTime; useStyle: boolean; order: number; drawShape(group: IGroup, context: IContext2d, x: number, y: number, doFill: boolean, doStroke: boolean, fVisible: boolean, sVisible: boolean, groupAttribute: Required, drawContext: IDrawContext, fillCb?: (ctx: IContext2d, markAttribute: Partial, themeAttribute: IThemeAttribute) => boolean, strokeCb?: (ctx: IContext2d, markAttribute: Partial, themeAttribute: IThemeAttribute) => boolean): void; } export declare class ClipBodyGroupBeforeRenderContribution implements IGroupRenderContribution { time: BaseRenderContributionTime; useStyle: boolean; order: number; drawShape(group: IGroup, context: IContext2d, xOrigin: number, yOrigin: number, doFill: boolean, doStroke: boolean, fVisible: boolean, sVisible: boolean, groupAttribute: Required, drawContext: IDrawContext, fillCb?: (ctx: IContext2d, markAttribute: Partial, themeAttribute: IThemeAttribute) => boolean, strokeCb?: (ctx: IContext2d, markAttribute: Partial, themeAttribute: IThemeAttribute) => boolean, doFillOrStroke?: { doFill: boolean; doStroke: boolean; }): void; }