/** * Creates a custom element that uses the Paint API if available or an HTML * canvas if not. * * Usage: * ```js * createCustomElement() * ``` * ```html * * ``` */ export function createCustomElement(): void; export * from './drawing.js'; export function register(): void;