UNPKG

@dnb/eufemia

Version:

DNB Eufemia Design System UI Library

8 lines (7 loc) 347 B
import React from 'react'; import type { TableTrProps } from '../TableTr'; export type TableAccordionHeadProps = { /** The row number */ count: number; } & TableTrProps & React.TableHTMLAttributes<HTMLTableRowElement>; export declare function TableAccordionHead(allProps: TableAccordionHeadProps): import("react/jsx-runtime").JSX.Element;