import { TableCell as Component } from './TableCell'; export declare const TableCell: { readonly name: "TableCell"; readonly purpose: "Data cell inside a TableRow; use spans to cover more than one row or column."; readonly example: "PlanStatusProActiveBusiness
"; readonly body: "htmdx"; readonly props: readonly [{ readonly name: "colSpan"; readonly type: "number"; readonly min: 1; readonly max: 1000; readonly description: "Number of columns this cell spans."; }, { readonly name: "rowSpan"; readonly type: "number"; readonly min: 0; readonly max: 65534; readonly description: "Number of rows this cell spans; 0 spans all remaining rows in the section."; }, { readonly name: "headers"; readonly type: "string"; readonly description: "Space-separated ids of TableHead cells that label this cell."; }]; readonly Component: typeof Component; };