import { Vue } from 'vue-property-decorator'; import { TClassVal } from '../../utils'; /** * This component is responsible of the display of a single table cell. */ export declare class VueDatatableCell extends Vue { /** The column of this cell */ private readonly column; /** The row of this cell */ private readonly row; /** * The representation of the row in the current column. * You can customize the cell content by changing [[IColumnDefinition.field]] or [[IColumnDefinition.representedAs]] */ get content(): string; /** The styles to apply to this cell */ get cellStyles(): { [key: string]: string; }; get cellClass(): TClassVal | undefined; }