import { Optional } from '@ephox/katamari'; import type { SugarElement } from '../node/SugarElement'; declare const set: (element: SugarElement, key: string, value: string | boolean | number) => void; declare const setAll: (element: SugarElement, attrs: Record) => void; declare const setOptions: (element: SugarElement, attrs: Record>) => void; declare const get: (element: SugarElement, key: string) => undefined | string; declare const getOpt: (element: SugarElement, key: string) => Optional; declare const has: (element: SugarElement, key: string) => boolean; declare const remove: (element: SugarElement, key: string) => void; declare const hasNone: (element: SugarElement) => boolean; declare const clone: (element: SugarElement) => Record; declare const transfer: (source: SugarElement, destination: SugarElement, attrs: string[]) => void; export { clone, set, setAll, setOptions, get, getOpt, has, remove, hasNone, transfer }; //# sourceMappingURL=Attribute.d.ts.map