import { PropType } from '@vue/composition-api'; export type FormItemType = { type: string; label: string; default: string; key: string; props: Record; multiple: boolean; span: string; value: string | number | string[] | number[] | Record | null; remote: boolean; pagesType: 'scroll' | 'page' | null; optionsPro: (params: string) => void; assignKeys?: Array; }; export declare const formProps: { listData: { type: PropType; default(): any[]; }; size: { type: PropType; default: string; }; fold: { type: PropType; default: boolean; }; isFold: { type: PropType; default: boolean; }; labelWidth: { type: PropType; }; modelValue: { type: PropType>; default(): {}; }; };