import * as React from 'react';
import './styles.scss';
interface Props {
    width: string;
    height: string;
    fill?: string;
}
declare const CheckIcon: ({ fill, width, height }: Props) => React.JSX.Element;
export default CheckIcon;
