declare class MobiusInput extends HTMLElement {
    [x: string]: unknown;
    storeRef: any;
    input: HTMLInputElement | null;
    name: string | null;
    private debounceFn;
    static get observedAttributes(): string[];
    constructor();
    attributeChangedCallback(name: string, oldValue: string | null, newValue: string | null): void;
    connectedCallback(): void;
    debouncedListFilter: (e: any) => void;
    addListener(): void;
}
export default MobiusInput;
