import type { Control } from '../types'; import type { EditFormProps } from '../props'; import type { ComputedRef, Ref } from 'vue'; export default function useUtils(props: EditFormProps, colCount: ComputedRef, tmpForm: Ref>): { getValueOfOption: (key: string | undefined, defaultKey: 'label' | 'value', option: any) => string; getPopupContainer: (e: any) => any; getColsConfig: (type: 'labelCol' | 'wrapperCol', item: Control, index?: number | undefined) => { flex?: string | undefined; } | undefined; getControlWidth: (item: Control) => string; getShowValue: (item: Control) => string | number; };