import { ESLMixinElement } from '../../esl-mixin-element/core';
/**
 * Optional mixin element to support esl-note-ignore attribute dynamic changes
 */
export declare class ESLNoteIgnore extends ESLMixinElement {
    static is: string;
    /** Selector to find all dependent ESLNote elements */
    protected noteSelector: string;
    /** Callback to handle changing of additional attributes */
    attributeChangedCallback(name: string, oldValue: string | null, newValue: string | null): void;
}
