96ff86d9dbaaf8fcb65983b1ec5d429cb8e2990fbdf144c4617eb5c62caf1cb0a8af60b015f116e08970250a4d85cc29ac68ccbccc44ec88637fb9c0c5fdfb 445 B

12345678910111213
  1. import type { TableColumnCtx } from './table-column/defaults';
  2. import type { DefaultRow } from './table/defaults';
  3. type Props = {
  4. tableLayout: 'fixed' | 'auto';
  5. columns?: TableColumnCtx<DefaultRow>[];
  6. };
  7. export declare function hColgroup(props: Props): import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
  8. [key: string]: any;
  9. }>;
  10. export declare namespace hColgroup {
  11. var props: string[];
  12. }
  13. export {};