import { IsomorphicEvent } from '@aracna/web'; export interface AttributeChangeEventDetail { name: string; old: string | null; value: string | null; } export declare class AttributeChangeEvent extends IsomorphicEvent { constructor(name: string, old: string | null, value: string | null); }