import { StringLiteral } from "./string-literal";
/**
 * A request to update the comments of a child node.
 *
 * @category Model Admin
 */
export declare class UpdateChildNodeCommentsRequest {
    /**
     * The updated child node comments.
     */
    comments: StringLiteral[];
}
