import type { IAnimatableColor } from "../IAnimatableColor.js";
import type { IRangeColor } from "../../../Core/Interfaces/Colors.js";
import type { RangeValue } from "../../../Types/RangeValue.js";
import type { RecursivePartial } from "../../../Types/RecursivePartial.js";
export interface IStroke {
    color?: RecursivePartial<IAnimatableColor> | RecursivePartial<IRangeColor>;
    opacity?: RangeValue;
    width: RangeValue;
}
