/*
 * @Author       : wfl
 * @LastEditors  : wfl
 * @description  : 
 * @updateInfo   : 
 * @Date         : 2022-11-21 10:28:10
 * @LastEditTime : 2022-11-28 14:33:34
 */
/// <reference types="vite/client" />

declare module 'iking-template-inset' {
  import type { Component } from 'vue'
  const component: Component<{
    width: number; // 宽度
    height: number; // 高度
    // 参数列表
    tagList: Array<{
      label: string;
      value: string;
      [key: string]: any;
    }[]>,
    // "1px solid #dcdfe6"
    border: string;
    // 排列方式
    horizontal: Boolean
    // placeholder
    placeholder: string
    trigger: 'change' | 'blur'
  }>
  export default component
}