import type { IMarkGraphic } from '../../mark/interface'; import type { BaseMark } from '../../mark'; import type { IAnimationSplitStrategy } from '../interface'; export declare class HorizontalBarSplitStrategy implements IAnimationSplitStrategy { name: string; shouldApply(mark: BaseMark, graphic: IMarkGraphic): boolean; split(mark: BaseMark, graphic: IMarkGraphic): Array<{ attrs: Record; order: number; }>; }