/// import type { SvgProps } from 'react-native-svg'; interface ChoiceIconProps extends SvgProps { pathFill?: string; } declare const ChoiceIcon: ({ pathFill, ...props }: ChoiceIconProps) => JSX.Element; export default ChoiceIcon;