import React from 'react'; import { View } from 'react-native'; import type { CardProps } from './types'; import { CardSection } from './CardSection'; type CardComponent = React.ForwardRefExoticComponent> & { Section: typeof CardSection; }; export declare const Card: CardComponent; export {};