export declare class UniElement extends HTMLElement {
    private _props;
    __isUniElement: boolean;
    constructor();
    attachVmProps(props: Record<string, any>): void;
    getAttribute(qualifiedName: string): string | null;
    get style(): CSSStyleDeclaration;
    get tagName(): string;
    get nodeName(): string;
}
