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