import React from 'react'; export interface Props { children: React.ReactElement; style?: React.CSSProperties; /** * 卡片模式,会带有圆角和背景样式 */ card?: boolean; /** * 阴影颜色 */ shadowColor?: string | false; /** * 阴影半径 * @default 20 */ shadowRadius?: number; /** * 是否选中 */ active?: boolean; /** * 类名 */ className?: string; } declare const _default: ({ children, card, shadowColor: outShadowColor, active, shadowRadius: outShadowRadius, className, ...props }: Props) => React.ReactElement> | null; export default _default;