import { ComponentType } from '../../jsx'; import type { BaseItemProps } from './types'; export interface LetterCardProps extends BaseItemProps { width?: number; height?: number; showStripe?: boolean; showGradient?: boolean; showBottomShade?: boolean; } /** * 字母卡片组件 * 用于显示大字母和标题 * 支持渐变背景、斜纹和底部阴影效果 */ export declare const LetterCard: ComponentType;