import { type StyleProps, type TableProps as BaseTableProps, type TableContainerProps as BaseTableContainerProps } from '@cimpress-ui/react'; import { type RowData } from './tanstack.js'; import type { TableEngine } from './types.js'; export interface TableProps extends Pick, Pick, StyleProps { /** The data engine created with the `useTableEngine` hook. */ engine: TableEngine; } /** * Renders a table using the provided data engine. * * See [table usage guidelines](https://ui.cimpress.io/components/table/) and [table building guide](https://ui.cimpress.io/dev-guides/tables/). */ export declare function Table({ engine, UNSAFE_className, UNSAFE_style, margin, marginX, marginY, marginTop, marginRight, marginBottom, marginLeft, ...props }: TableProps): import("react/jsx-runtime").JSX.Element; export declare namespace Table { var displayName: string; } //# sourceMappingURL=table.d.ts.map