import type { IAnimatableColor } from "../IAnimatableColor.js"; import type { IFill } from "./IFill.js"; import type { IRangeColor } from "../../../Core/Interfaces/Colors.js"; import type { IStroke } from "./IStroke.js"; import type { RecursivePartial } from "../../../Types/RecursivePartial.js"; export interface IPaint { color?: RecursivePartial | RecursivePartial; fill?: IFill; stroke?: IStroke; }