import type { TableHTMLAttributes } from 'react';
import type { TableTrProps } from '../TableTr';
export type TableAccordionHeadProps = {
    /** The row number */
    count: number;
} & TableTrProps & Omit<TableHTMLAttributes<HTMLTableRowElement>, 'onClick'>;
export declare function TableAccordionHead(allProps: TableAccordionHeadProps): import("react/jsx-runtime").JSX.Element;
