import { Property } from "../node_modules/csstype/index.js";
import { VuiTheme } from "../theme/types.js";
import "../theme/index.js";
import { SystemProp } from "@xstyled/system";
//#region src/system/tables.d.ts
type BorderCollapseProp = SystemProp<Property.BorderCollapse, VuiTheme>;
type BorderCollapseProps = {
  borderCollapse?: BorderCollapseProp;
};
type TableLayoutProp = SystemProp<Property.TableLayout, VuiTheme>;
type TableLayoutProps = {
  tableLayout?: TableLayoutProp;
};
type TablesProps = BorderCollapseProps & TableLayoutProps;
//#endregion
export { BorderCollapseProps, TableLayoutProps, TablesProps };

//# sourceMappingURL=tables.d.ts.map