import { CoreModel } from '../core/core.model'; /** *

Example of Selectable Model:

*
{{'{'}}
 *	value: 'value',
 *	item: any,
 *	checked: false,
 *	itemPosition: 'after'
 *{{'}'}}
 * 
*/ export declare class SelectableModel extends CoreModel { /** * The internal value of the selectable emitted when selected. Default: value. */ value?: string; /** * Item can be a label or any other object based on the html template passed to the selectable. */ item?: any; /** * Checked or not checked. Default: false. */ checked?: boolean; /** * Item Position relative to the control. Can be: before , after. Default: after. */ itemPosition?: string; /** @hidden */ constructor(values?: Object); }