import { type CSSProperties } from 'vue'; import { type FieldType } from '../field'; import { type FormContext } from './form.api'; import { type FormItemWidth, type FormItemProps } from './form-item.api'; export declare function getFormItemWidth(outWidth?: FormItemWidth): { width: string; flex?: undefined; minWidth?: undefined; } | { flex: number; minWidth: number; width?: undefined; }; export declare function useFormItemWidth(props: FormItemProps, formContext?: FormContext | null): import("vue").ComputedRef;