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