/** 卡片 — 白底(dark: surface-card)+ 1px 边框 + 极轻投影的内容容器。 */ export interface CardProps { /** 内边距 @default 'var(--space-5)' */ padding?: string | number; style?: any; children?: any; } export declare function Card(props: CardProps): any;