import { ElementRef } from 'angular2/core'; import { List } from '../list/list'; /** * @name ItemSliding * * @description * Creates a list-item that can easily be swiped, deleted, reordered, edited, and more. * * @usage * ```html * * * * * * * * * * ``` * @demo /docs/v2/demos/item-sliding/ * @see {@link /docs/v2/components#lists List Component Docs} * @see {@link ../../list/List List API Docs} */ export declare class ItemSliding { private _list; constructor(_list: List, elementRef: ElementRef); /** * @private */ close(): void; }