/** * @class ListItemRequest - Represents a list item request */ export declare class ListItemRequest { /** * @property {number} listId - The id for the list that the item belongs to. */ listId: number; /** * @property {string | null} id - The id for the list item. */ id: string | null; /** * @property {string} name - The name of the list item. */ name: string; /** * @property {number | null} numericValue - The numeric value of the list item. */ numericValue: number | null; /** * @property {string | null} color - The color of the list item. */ color: string | null; /** * @constructor - Creates a new instance of the ListItemRequest class. * @param {number} listId - The id for the list that the item belongs to. * @param {string | null} id - The id for the list item. * @param {string} name - The name of the list item. * @param {number | null} numericValue - The numeric value of the list item. * @param {string | null} color - The color of the list item. * @returns {ListItemRequest} - A new instance of the ListItemRequest class. */ constructor(listId: number, id: string | null, name: string, numericValue: number | null, color: string | null); }