import { BoxProps } from '../Box'; import { PrismaneWithInternal, PrismaneProps, PrismaneBreakpoints } from '../../types'; import { TableRowProps } from "./TableRow"; import { TableHeadProps } from "./TableHead"; import { TableFootProps } from "./TableFoot"; import { TableCellProps } from "./TableCell"; import { TableBodyProps } from "./TableBody"; import { TableCaptionProps } from "./TableCaption"; export { type TableRowProps, type TableHeadProps, type TableFootProps, type TableCellProps, type TableBodyProps, type TableCaptionProps, }; export type TableProps = PrismaneProps<{ lines?: "vertical" | "horizontal" | "both" | "none"; striped?: boolean; bordered?: boolean; size?: PrismaneBreakpoints; }, BoxProps<"table">>; declare const Table: PrismaneWithInternal; export default Table; //# sourceMappingURL=Table.d.ts.map