import type { FunctionalComponent } from 'vue'; import type { ColumnType } from '../interface'; export type ColumnProps = ColumnType; /** * This is a syntactic sugar for `columns` prop. * So HOC will not work on this. */ declare const Column: (arg: T) => FunctionalComponent>; export default Column;