import { Color, ContentStroke } from "document-schema.js"; import { Package, XmlElement } from "odf.js"; //#region src/edit/odg/style.d.ts interface GraphicStyleInit { readonly fill?: Color; readonly stroke?: ContentStroke; readonly textFlowAnchored?: boolean; } declare function buildGraphicStyle(pkg: Package, init: GraphicStyleInit): string; declare function readGraphicFill(pkg: Package, element: XmlElement): Color | undefined; declare function readGraphicStroke(pkg: Package, element: XmlElement): ContentStroke | undefined; declare function setGraphicFill(pkg: Package, element: XmlElement, fill: Color | undefined): void; declare function setGraphicStroke(pkg: Package, element: XmlElement, stroke: ContentStroke | undefined): void; //#endregion export { GraphicStyleInit, buildGraphicStyle, readGraphicFill, readGraphicStroke, setGraphicFill, setGraphicStroke };