import type { HTMLAttributes, CSSProperties, ReactNode } from 'react';
export interface ContentProps extends HTMLAttributes {
/**
* 自定义右侧边 sider,设置为 null 或不设置隐藏 sider
*/
sider?: ReactNode;
/**
* 内容类名
*/
contentClassName?: string;
/**
* 内容样式
*/
contentStyle?: CSSProperties;
/**
* 右侧边类名
*/
siderClassName?: string;
/**
* 右侧边样式
*/
siderStyle?: CSSProperties;
/**
* 自定义右侧边宽度
* @default 248
*/
siderWidth?: CSSProperties['width'];
/**
* 自定义底部 bottomBar,设置为 null 或不设置隐藏 bottomBar
*/
bottomBar?: ReactNode;
/**
* 底部bar的类名
*/
bottomBarClassName?: string;
/**
* 底部样式
*/
bottomBarStyle?: CSSProperties;
}
export interface BreadcrumbProps extends HTMLAttributes {
/**
* 高度
* @default 48
*/
height?: number;
}