import type React from 'react'; export interface Props { /** * 子元素 */ children: React.ReactNode; } /** * 定制展示列的草稿列表上下文 * * @param props 组件属性 * @param props.children 组件包含的子元素 */ export default function CustomDraftListPageProvider({ children, }: Props): JSX.Element;