import * as React from "react"; /** * Props for the {@link Table} component. */ export type TableProps = React.HTMLAttributes; /** * Props for the {@link TableHeader} component. */ export type TableHeaderProps = React.HTMLAttributes; /** * Props for the {@link TableBody} component. */ export type TableBodyProps = React.HTMLAttributes; /** * Props for the {@link TableFooter} component. */ export type TableFooterProps = React.HTMLAttributes; /** * Props for the {@link TableRow} component. */ export type TableRowProps = React.HTMLAttributes; /** * Props for the {@link TableHead} component. */ export type TableHeadProps = React.ThHTMLAttributes; /** * Props for the {@link TableCell} component. */ export type TableCellProps = React.TdHTMLAttributes; /** * Props for the {@link TableCaption} component. */ export type TableCaptionProps = React.HTMLAttributes; /** * Wraps a table in a horizontally scrollable container. * * @remarks * - Pure CSS component (no Base UI primitive) * - Renders a `` element inside a `
` container * - Styling via CSS Modules with `--ac-*` custom properties * * @example * ```tsx *
* *
* ``` * * @see {@link TableProps} for available props */ declare const Table: React.ForwardRefExoticComponent>; /** * Renders the table header section. * * @remarks * - Pure CSS component (no Base UI primitive) * - Renders a `` element * - Styling via CSS Modules with `--ac-*` custom properties * * @example * ```tsx * * * * ``` * * @see {@link TableHeaderProps} for available props */ declare const TableHeader: React.ForwardRefExoticComponent>; /** * Renders the table body section. * * @remarks * - Pure CSS component (no Base UI primitive) * - Renders a `` element * - Styling via CSS Modules with `--ac-*` custom properties * * @example * ```tsx * * * * ``` * * @see {@link TableBodyProps} for available props */ declare const TableBody: React.ForwardRefExoticComponent>; /** * Renders the table footer section. * * @remarks * - Pure CSS component (no Base UI primitive) * - Renders a `` element * - Styling via CSS Modules with `--ac-*` custom properties * * @example * ```tsx * * * * ``` * * @see {@link TableFooterProps} for available props */ declare const TableFooter: React.ForwardRefExoticComponent>; /** * Renders a table row. * * @remarks * - Pure CSS component (no Base UI primitive) * - Renders a `` element * - Styling via CSS Modules with `--ac-*` custom properties * * @example * ```tsx * * Value * * ``` * * @see {@link TableRowProps} for available props */ declare const TableRow: React.ForwardRefExoticComponent>; /** * Renders a header cell. * * @remarks * - Pure CSS component (no Base UI primitive) * - Renders a `` element * - Styling via CSS Modules with `--ac-*` custom properties * * @example * ```tsx * Name * ``` * * @see {@link TableHeadProps} for available props */ declare const TableHead: React.ForwardRefExoticComponent>; /** * Renders a standard table cell. * * @remarks * - Pure CSS component (no Base UI primitive) * - Renders a `` element * - Styling via CSS Modules with `--ac-*` custom properties * * @example * ```tsx * Acme Inc. * ``` * * @see {@link TableCellProps} for available props */ declare const TableCell: React.ForwardRefExoticComponent>; /** * Renders the table caption. * * @remarks * - Pure CSS component (no Base UI primitive) * - Renders a `` element * - Styling via CSS Modules with `--ac-*` custom properties * * @example * ```tsx * Recent invoices * ``` * * @see {@link TableCaptionProps} for available props */ declare const TableCaption: React.ForwardRefExoticComponent>; export { Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow }; //# sourceMappingURL=table.d.ts.map