declare namespace _exports {
    export { ObsoleteAttrConfig, ObsoleteAttrs };
}
declare const _exports: ObsoleteAttrs;
export = _exports;
type ObsoleteAttrConfig = {
    /**
     * - List of HTML elements where this attribute is
     * obsolete. Use "*" for all elements.
     */
    elements: string[];
    /**
     * - Suggestion for what to use instead of this
     * obsolete attribute.
     */
    suggestion: string;
};
type ObsoleteAttrs = Record<string, ObsoleteAttrConfig[]>;
//# sourceMappingURL=obsolete-attrs.d.ts.map