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