declare const tag = "wup-popup-arrow";
declare global {
    interface HTMLElementTagNameMap {
        [tag]: WUPPopupArrowElement;
    }
}
declare module "react" {
    namespace JSX {
        interface IntrinsicElements {
            /**  Internal arrow element for {@link WUPPopupElement} */
            [tag]: WUP.Base.JSXProps<WUPPopupArrowElement>;
        }
    }
}
/** Internal arrow element for {@link WUPPopupElement} */
export default class WUPPopupArrowElement extends HTMLElement {
    static tagName: "wup-popup-arrow";
    constructor();
}
export {};
