/**
 * Sets the rendering mode of the component.
 *
 * The supported values are:
 * * "canvas" - renders the component as a Canvas element.
 * * "svg" - renders the component as an inline SVG document.
 */
export type RenderMode = 'svg' | 'canvas';
