import React from 'react'; import { ContainerComponentProps } from '../types/common'; export interface CardSectionProps extends ContainerComponentProps { title?: string; icon?: boolean; onPress?: () => void; } declare const CardSection: React.FC; export default CardSection;