import { ListNode } from "./list-node";
import { ListNodeInfo } from "./list-node-info";
/**
 * Represents a list.
 *
 * @category Model Admin
 */
export declare class ListChildNode {
    /**
     * The child nodes of this list node.
     */
    children: ListNode[];
    /**
     * Provides information about a list.
     */
    nodeinfo: ListNodeInfo;
}
