import React from 'react'; import { ViewStyle, StyleProp } from 'react-native'; import { SpacingProps } from '../../../theme'; import { BoxProps } from '../../common/box'; import { ShadowProps } from '../../common/shadow'; import { GradientProps } from '../../common/gradient'; import { PressEvents } from '../../common/events'; import { TestableProps } from '../../common/test'; export interface CardProps extends SpacingProps, BoxProps, PressEvents, GradientProps, TestableProps, ShadowProps { children: React.ReactNode; style?: StyleProp; disabled?: boolean; flex?: number; } /** * Card 组件:通用卡片容器。 * * - 集成边框、渐变、事件、测试工具的公共接口。 * - 仅使用 SpacingProps 管理内外边距;若未显式传入 spacing 键,则应用默认 padding=md 与 margin=sm。 */ export declare const Card: React.FC; //# sourceMappingURL=Card.d.ts.map