import type { Item } from '../type.js'; import type { DefineComponent } from 'vue' export type ColumnConfig = { id: string; name: string; prop: string; width: number | string; } export type SortConfig = { /** 列 id */ id: string; /** 排序规则 */ order: 'asc' | 'desc'; } interface Props { /** 列 */ columns: ColumnConfig[]; /** 行 */ rows: Item[]; /** 弹窗 z-index */ zIndex?: number; } declare const _default: DefineComponent; }> export default _default