export interface BaseType {
    width?: number;
    height?: number;
    x?: number;
    y?: number;
    type?: 'group' | 'container' | 'text' | 'image' | 'circle' | 'rect' | any;
    children?: BaseType[];
    [k: string]: any;
}
export interface PaintingType extends BaseType {
    width: number;
    height: number;
}
export interface DrawerResponse {
    tempFilePath?: string;
    errMsg?: string;
    width?: number;
    height?: number;
}
