import * as React from 'react';
import { KendoComponent } from '../_types/component';
export type KendoTableThProps = {
    text?: string;
    colspan?: any;
    rowspan?: any;
};
export declare const TableTh: KendoComponent<KendoTableThProps & React.HTMLAttributes<HTMLTableCellElement>>;
