import type * as types from "./types"; import type { SketchRef } from "../FormDefinition"; export interface Sketch extends types.ElementBase, types.EditableElement, types.ElementWithRequire { /** The source image to be sketched upon. */ readonly source?: string | File; /** Indicates the current value. */ readonly value?: SketchRef; }