import type { ImageSourcePropType } from 'react-native'; import type { IconName } from '../../atoms/Icon'; export interface CardButtonProps { label: string; image?: ImageSourcePropType; icon?: IconName; onPress: () => void; disabled?: boolean; className?: string; testID?: string; }