import { Attributes, Component } from 'jinge'; import { Table } from './table'; export interface TableColumnAttrs { width?: string | number; numeric?: boolean; label: string; prop: string; } export declare class TableColumn extends Component { style: string; numeric: boolean; label: string; prop: string; _Table: Table; constructor(attrs: Attributes); __render(): Comment[]; __beforeDestroy(): void; }