import { Optional } from '@ephox/katamari'; import { SugarElement } from '../node/SugarElement'; declare const set: (element: SugarElement, property: string, value: string) => void; declare const setAll: (element: SugarElement, css: Record) => void; declare const setOptions: (element: SugarElement, css: Record>) => void; declare const get: (element: SugarElement, property: string) => string; declare const getRaw: (element: SugarElement, property: string) => Optional; declare const getAllRaw: (element: SugarElement) => Record; declare const isValidValue: (tag: string, property: string, value: string) => boolean; declare const remove: (element: SugarElement, property: string) => void; declare const preserve: (element: SugarElement, f: (e: SugarElement) => T) => T; declare const copy: (source: SugarElement, target: SugarElement) => void; declare const reflow: (e: SugarElement) => void; declare const transfer: (source: SugarElement, destination: SugarElement, styles: string[]) => void; export { copy, set, preserve, setAll, setOptions, remove, get, getRaw, getAllRaw, isValidValue, reflow, transfer }; //# sourceMappingURL=Css.d.ts.map