import { StringLiteral } from './string-literal';
/**
 * Information about a child node.
 *
 * @category Model Admin
 */
export declare class ChildNodeInfo {
    /**
     * The comments attached to the enclosing object.
     */
    comments: StringLiteral[];
    /**
     * The IRI of the root node of the list that this node belongs to.
     */
    hasRootNode?: string;
    /**
     * The ID of the enclosing object.
     */
    id: string;
    /**
     * The labels attached to the enclosing object.
     */
    labels: StringLiteral[];
    /**
     * The name of the enclosing object.
     */
    name?: string;
    /**
     * The position of a child node.
     */
    position?: number;
}
//# sourceMappingURL=child-node-info.d.ts.map