import { ExtractPropTypes, PropType } from 'vue' import { IRenderConfig, IAnyObject } from '../../utils' export const layoutProps = { config: { type: Object as PropType, default: () => ({}) }, fieldKey: { type: String }, model: { type: Object as PropType, default: () => ({}) }, modelValue: { type: {} as PropType } } export type LayoutProps = ExtractPropTypes