interface NodoProps {
    [key: string]: any;
}
export default class Nodo<T extends HTMLElement> {
    el: T;
    props: NodoProps;
    refs: {
        [key: string]: HTMLElement | HTMLElement[];
    };
    constructor(el: string | T, props?: NodoProps);
    private findRefs;
}
export {};
