import { default as React } from 'react'; export interface TableProps { thead?: React.ReactNode; className?: string; variant?: "boxed"; tbody?: React.ReactNode; tfoot?: React.ReactNode; } /** * `` component is used to organize and display data efficiently. * * These are all the available components you can use to manage a table: * * ```js * import { * Table, * Tr, * Th, * Td * } from '@commercelayer/app-elements' * ``` */ export declare const Table: React.FC;