import { type FC, type ReactNode } from 'react'; type TableProps = { /** * A `testId` prop is a unique string that appears as a data attribute `data-testid` * in the rendered code, serving as a hook for automated tests. */ testId?: string; /** * Accessible description of the table data. * * @see 'https://www.w3.org/WAI/EO/Drafts/tutorials/tables/summary/' */ summary?: string; /** * Table content. */ children: ReactNode; }; /** * __Table__ * * A primitive table container. Applies the HTML native element with no other styling. * * - [Examples](https://atlassian.design/components/table/examples) * * @primitive * @see https://hello.atlassian.net/wiki/spaces/DST/pages/1947062524/Dynamic+table+2.0+implementation+spec */ export declare const Table: FC; export {};