import { XmlComponent } from '../../xml-components'; import { PositiveUniversalMeasure } from '../../../util/values'; export declare const HeightRule: { readonly AUTO: "auto"; readonly ATLEAST: "atLeast"; readonly EXACT: "exact"; }; export declare const createTableRowHeight: (value: number | PositiveUniversalMeasure, rule: (typeof HeightRule)[keyof typeof HeightRule]) => XmlComponent;