@dnb/eufemia
Version:
DNB Eufemia Design System UI Library
8 lines (7 loc) • 381 B
TypeScript
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;