import { type XmlNode } from '../xml/tree.js';
import { type Fill } from './fills.js';
/** 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;