declare const states: ("focus" | "selected" | "highlighted")[];
export type KendoTableTdProps = {
    text?: string;
    colspan?: any;
    rowspan?: any;
};
export type KendoTableTdState = {
    [K in (typeof states)[number]]?: boolean;
};
export declare const TableTd: {
    (props: KendoTableTdProps & KendoTableTdState & React.HTMLAttributes<HTMLTableCellElement>): import("react/jsx-runtime").JSX.Element;
    states: ("focus" | "selected" | "highlighted")[];
    className: string;
};
export default TableTd;
