///
/**
* ngTable: Table + Angular JS
*
* @author Vitalii Savchuk
* @url https://github.com/esvit/ng-table/
* @license New BSD License
*/
import { IDirective, IQService, IParseService } from 'angular';
/**
* Directive that instantiates {@link NgTableController NgTableController}.
* @ngdoc directive
* @name ngTable
* @example
*
* ```html
*
*
* |
* {{user.name}}
* |
*
* {{user.age}}
* |
*
*
* ```
*/
export declare function ngTable($q: IQService, $parse: IParseService): IDirective;