import { DataTablesFeature } from 'ngx-datatables-net'; /** * Use DataTables' default ("dt") styling. * * Importing `datatables.net-dt` registers the default styling classes as a side-effect and * re-exports the same constructor, which we bind to the `DATA_TABLE` token. * * Remember to also include the stylesheet in your application, e.g. in `angular.json`: * `"node_modules/datatables.net-dt/css/dataTables.dataTables.css"`. * * @example * provideDataTables(withDefaultStyling()) */ declare function withDefaultStyling(): DataTablesFeature; export { withDefaultStyling };