export default [ { title: '成功提示', schema: { componentName: 'PisellAlert', props: { message: 'Success Tips', description: 'Detailed description and advice about successful copywriting.', type: 'success', showIcon: true, }, }, }, { title: '信息提示', schema: { componentName: 'PisellAlert', props: { message: 'Informational Notes', description: 'Additional description and information about copywriting.', type: 'info', showIcon: true, }, }, }, { title: '警告提示', schema: { componentName: 'PisellAlert', props: { message: 'Warning', description: 'This is a warning notice about copywriting.', type: 'warning', showIcon: true, }, }, }, { title: '错误提示', schema: { componentName: 'PisellAlert', props: { message: 'Error', description: 'This is an error message about copywriting.', type: 'error', showIcon: true, }, }, }, ];