import type { ReactNode } from 'react'; import { type StyleProp, type ViewStyle } from 'react-native'; export interface CardProps { children: ReactNode; style?: StyleProp<ViewStyle>; } export declare function Card({ children, style }: CardProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=index.d.ts.map