import React from 'react';
export interface IconArrowCounterClockwiseProps {
    bold?: boolean;
    width?: string | number;
    height?: string | number;
    className?: string;
    fill?: string;
    'aria-hidden'?: boolean;
    'aria-label'?: string;
    [key: string]: any;
}
declare const IconArrowCounterClockwise: React.FC<IconArrowCounterClockwiseProps>;
export default IconArrowCounterClockwise;
