import { Slots } from 'vue'; import { FormProps } from 'element-plus'; import { Column, BaseColumn } from './types'; export type NonRType = NonNullable; export type NonModel = NonNullable; export type RenderColumn = (model: NonModel, i: T, slots?: Slots) => JSX.Element | null; /** * 列信息里 prop 支持路径参数 * 例: column.x => { column: { x: 1 } } */ export declare const renderColumn: (model: NonModel, i: Column, slots?: Slots) => JSX.Element | null; export declare const useColumn: () => (model: NonModel, i: Column, slots?: Slots) => JSX.Element | null; export * from './types';