import { type XmlNode } from '../xml/tree'; import { type Fill } from './fills'; /** Build the `` envelope around either variant. */ export declare function fillToTree(fill: Fill): XmlNode; /** Inverse of {@link fillToTree}. Reads `` and dispatches on the child tag. */ export declare function fillFromTree(node: XmlNode): Fill;