import { type Element } from 'parse5/dist/tree-adapters/default';
export interface ReplacementAttributeToDirective {
    readonly componentSelector: string[] | string;
    readonly directive: string;
    readonly directiveModule: {
        readonly moduleSpecifier: string;
        readonly name: string;
    };
    readonly inputProperty: string;
    filterFn?(element: Element): boolean;
}
