import { CoreModel } from '../core/core.model'; export declare class ListModel extends CoreModel { /** * It is title for the Component. */ title?: string; /** * Property for selectable */ selectable?: boolean; /** * Property to show checkbox on list items */ withCheckbox?: boolean; /** * It is icon constructor, which take values from List Component and create List Model object. */ constructor(values?: Object); }