export interface Size {
    width: number;
    height: number;
}
export interface BrushContext {
    start: number;
    end: number;
}
