import { DefineComponent } from 'vue' export const MlButton: DefineComponent<{ type?: 'text' | 'button' | null status?: 'primary' | 'gray' | 'blue' | 'green' | 'pink' | 'red' | 'orange' | 'purple' | 'white' | null permissionCode?: string onClick?: (params: any) => void }>