/** @packageDocumentation
 * @module PresentationRules
 */
import { NavigationRuleBase } from "./NavigationRule.js";
/**
 * Child node rules are used to define child nodes in a hierarchy.
 *
 * @see [Child node rule reference documentation page]($docs/presentation/hierarchies/ChildNodeRule.md)
 * @public
 */
export interface ChildNodeRule extends NavigationRuleBase {
    /** Used for serializing to JSON. */
    ruleType: "ChildNodes";
}
//# sourceMappingURL=ChildNodeRule.d.ts.map