import { ReactNode } from 'react'; import { PropsFromHTMLDivElementWithoutStyle } from './utils'; export interface ContentProps extends PropsFromHTMLDivElementWithoutStyle { /** * 自定义 class */ className?: string; /** * 面包屑 */ breadcrumb?: ReactNode; /** * 类型 * * 如不指定,则根据渲染子节点是否存在 `` 进行判断 * * - `plain` content 作为 panels 的 containers,样式上为 "透明背景 + 无内边距" * - `undefined` 如子节点无 `` ,则样式上,自己作为一个 panel,即 "白背景 + panel 一样 size 的内边距" * * **注意** 根据渲染子节点自动判断不是可靠的,如以下使用 [react-router](https://reactrouter.com/web/guides/quick-start) 情况, * 在 `/foo`, `/bar` 间进行切换时,`` 并不渲染,而无法感知 "子节点是否存在 " 的变化 * ```jsx * * * * * * * ``` */ type?: 'plain'; } export declare const Content: import("react").ForwardRefExoticComponent>;