import { ListNode } from "./list-node";
/**
 * A list node.
 *
 * @category Model Admin
 */
export declare class StoredListNode extends ListNode {
    /**
      * The ID of the enclosing object.
      */
    id: string;
}
