import { ComputedRef } from 'vue'; import { TableColumnCtx } from '../table.type'; declare function useRender(props: TableColumnCtx, slots: any, owner: ComputedRef): { columnId: import("vue").Ref; realAlign: import("vue").Ref; isSubColumn: import("vue").Ref; realHeaderAlign: import("vue").Ref; columnOrTableParent: ComputedRef; setColumnWidth: (column: any) => any; setColumnForcedProps: (column: any) => any; setColumnRenders: (column: any) => any; getPropsData: (...propsKey: unknown[]) => unknown; getColumnPsIndex: (children: any, child: any) => any; }; export default useRender;