import type { Control } from '../types'; import type { EditFormProps } from '../props'; import type { ComputedRef } from 'vue'; export default function useConfig(props: EditFormProps, colCount: ComputedRef): { config: ComputedRef<{ rows: Control[][]; hide?: boolean | undefined; visibleControl?: ((form: Record) => boolean) | undefined; slot?: string | undefined; title?: string | undefined; class?: string | undefined; }[]>; };