/** * * Item de Lista. */ export declare class ItemList { /** * * Identificador do item. */ id?: string | undefined; /** * * Item selecionado. */ selected?: boolean | undefined; /** * * Título do item. */ title?: string | undefined; /** * * Descrição do item. */ description?: string | undefined; constructor( /** * * Identificador do item. */ id?: string | undefined, /** * * Item selecionado. */ selected?: boolean | undefined, /** * * Título do item. */ title?: string | undefined, /** * * Descrição do item. */ description?: string | undefined); }