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