import { type BoxProps } from '../Box'; export type TableProps = BoxProps & { striped?: boolean; sticky?: boolean; fixed?: boolean; }; declare const Table: ({ striped, sticky, fixed, ...props }: TableProps) => import("react/jsx-runtime").JSX.Element; export default Table; //# sourceMappingURL=Table.d.ts.map