// 定义组件属性类型
export type ButtonProps = {
    text: string;
    size?: 'small' | 'middle' | 'large';
  }
  
  // 定义设置面板属性类型
export type ButtonSettingsProps = {
    setProp: (callback: (props: any) => void) => void;
    [key: string]: any;
  }