import { TableHead as Component } from './TableHead';
export declare const TableHead: {
readonly name: "TableHead";
readonly purpose: "Header cell inside a TableRow; use scope to link it to its row, column, or group.";
readonly example: "
";
readonly body: "htmdx";
readonly props: readonly [{
readonly name: "colSpan";
readonly type: "number";
readonly min: 1;
readonly max: 1000;
readonly description: "Number of columns this header cell spans.";
}, {
readonly name: "rowSpan";
readonly type: "number";
readonly min: 0;
readonly max: 65534;
readonly description: "Number of rows this header cell spans; 0 spans all remaining rows in the section.";
}, {
readonly name: "headers";
readonly type: "string";
readonly description: "Space-separated ids of other TableHead cells that label this header cell.";
}, {
readonly name: "scope";
readonly type: "string";
readonly values: readonly ["row", "col", "rowgroup", "colgroup"];
readonly description: "Cells this header labels.";
}, {
readonly name: "abbr";
readonly type: "string";
readonly description: "Short form of the header label.";
}];
readonly Component: typeof Component;
};