import { DataTablesFeature } from 'ngx-datatables-net'; /** Options for the Material styling adapter. */ interface MaterialStylingOptions { /** * Extra class(es) to scope the adapter stylesheet under. Defaults to `'ngxdt-material'`. * Override only if you ship a customized copy of the stylesheet under a different scope. */ scopeClass?: string; } /** * Use the authored Material Design styling. * * DataTables ships no official Material package, so this adapter uses the core constructor and a * self-contained, scoped stylesheet (`ngx-datatables-net/material/styles/...css`). The directive * adds the `ngxdt-material` scope class to the container automatically. * * @example * provideDataTables(withMaterial()) */ declare function withMaterial(options?: MaterialStylingOptions): DataTablesFeature; export { withMaterial }; export type { MaterialStylingOptions };