import * as React from 'react'; type CheckIconPropsType = {}; const CheckIcon = React.forwardRef( (_, ref) => ( ) ); type IndeterminateIconPropsType = {}; const IndeterminateIcon = React.forwardRef< SVGSVGElement, IndeterminateIconPropsType >((props, ref) => ( )); export {CheckIcon, IndeterminateIcon};