import type { ReactNode } from 'react'; import { Space, Typography } from 'antd'; /** 列表页顶栏:标题在左,主操作在右,列设置永远最右 */ export function AdminListHeader({ title, description, actions, settings, }: { title?: ReactNode; description?: ReactNode; actions?: ReactNode; settings?: ReactNode; }) { return (