///
/**
* ngTable: Table + Angular JS
*
* @author Vitalii Savchuk
* @url https://github.com/esvit/ng-table/
* @license New BSD License
*/
import { IDirective, IParseService } from 'angular';
/**
* One-way data binds the $columns array generated by ngTable/ngTableDynamic to the specified
* expression.
* This allows the $columns array created for the table to be accessed outside of the html table
* markup.
*
* @ngdoc directive
*
* @example
* ```html
*
* ```
*/
export declare function ngTableColumnsBinding($parse: IParseService): IDirective;