import { IColor } from "../../Colors";
export default interface IStrokeSettings {
    color?: string | IColor;
    size?: number;
    lineJoin?: string;
}
