import { ElementRef } from '@angular/core'; import { MdcCheckbox } from '@angular-mdc/web/checkbox'; export declare class MDCDataTableTable { elementRef: ElementRef; constructor(elementRef: ElementRef); } export declare class MDCDataTableHeaderRow { elementRef: ElementRef; constructor(elementRef: ElementRef); } export declare class MDCDataTableHeaderCell { elementRef: ElementRef; get numeric(): boolean; set numeric(value: boolean); private _numeric; _checkbox?: MdcCheckbox; constructor(elementRef: ElementRef); } export declare class MDCDataTableContent { elementRef: ElementRef; constructor(elementRef: ElementRef); } export declare class MDCDataTableRow { elementRef: ElementRef; private _id; /** The unique ID of the row. */ get id(): string; _checkbox?: MdcCheckbox; get selected(): boolean; set selected(value: boolean); private _selected; constructor(elementRef: ElementRef); getNativeElement(): HTMLElement; } export declare class MDCDataTableCell { elementRef: ElementRef; get checkbox(): boolean; set checkbox(value: boolean); private _checkbox; get numeric(): boolean; set numeric(value: boolean); private _numeric; constructor(elementRef: ElementRef); }