import { TableColumnCtx } from "./table-column/defaults.js"; import { DefaultRow } from "./table/defaults.js"; import * as vue from "vue"; //#region ../../packages/components/table/src/h-helper.d.ts type Props = { tableLayout: 'fixed' | 'auto'; columns?: TableColumnCtx[]; }; declare function hColgroup(props: Props): vue.VNode; declare namespace hColgroup { var props: string[]; } //#endregion export { hColgroup };