import { StringLiteral } from "./string-literal";
/**
 * A request to update a child node.
 *
 * @category Model Admin
 */
export declare class UpdateChildNodeRequest {
    /**
     * Provides a list IRI.
     */
    listIri: string;
    /**
     * The IRI of a project.
     */
    projectIri: string;
    /**
     * The name of the node.
     */
    name?: string;
    /**
     * The labels attached to the enclosing object.
     */
    labels?: StringLiteral[];
    /**
     * The comments attached to the enclosing object.
     */
    comments?: StringLiteral[];
}
