import { Raw, Component } from 'vue';
export type ElementOrComponent = 'a' | 'article' | 'aside' | 'audio' | 'blockquote' | 'button' | 'canvas' | 'code' | 'details' | 'div' | 'em' | 'figcaption' | 'figure' | 'footer' | 'form' | 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6' | 'header' | 'iframe' | 'img' | 'input' | 'label' | 'li' | 'main' | 'mark' | 'nav' | 'ol' | 'p' | 'progress' | 'section' | 'select' | 'source' | 'span' | 'strong' | 'svg' | 'table' | 'tbody' | 'td' | 'template' | 'tfoot' | 'th' | 'thead' | 'textarea' | 'time' | 'tr' | 'ul' | 'video' | Component | Raw<Component>;
