import React, { type PropsWithChildren } from "react"; interface DataTableTableProps extends React.HTMLAttributes { /** * Controls the table layout. * - `auto` (default): Columns size to content. * - `fixed`: Column widths can be set explicitly; columns without widths share remaining space. */ readonly layout?: "auto" | "fixed"; } export declare function DataTableTable(props: PropsWithChildren): React.JSX.Element; export {};