import type { SugarElement } from '../node/SugarElement'; export interface AttributeProperty { readonly is: (element: SugarElement) => boolean; readonly remove: (element: SugarElement) => void; readonly set: (element: SugarElement) => void; } export declare const AttributeProperty: (attribute: string, value: string) => AttributeProperty; //# sourceMappingURL=AttributeProperty.d.ts.map