DrawingAreaEmptyVisual: {
    fit?: "contain" | "cover";
    kind: "image";
    opacity?: number;
    src: string;
} | {
    kind: "text";
    opacity?: number;
    text: string;
} | {
    kind: "shape";
    opacity?: number;
    shape: "rect" | "circle";
}