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