import { Vector2 } from "three"; import type { ISpriteData, IKeyFramesConstructorOption } from "@nrelaxed-ui/keyframes"; export declare type TMarkKeyframes = { width: number; height: number; source: HTMLImageElement[] | ISpriteData[]; }; export interface IMarkConstructorOption { img: string | TMarkKeyframes; anchor?: Vector2; sprite?: boolean; keyframesOption?: IKeyFramesConstructorOption; }