import * as React from 'react'; import { CSSProperties, HTMLAttributes, Component } from 'react'; import { ArrowSize } from '../../../types'; export interface AddToCartIconProps extends HTMLAttributes { style?: CSSProperties; enabled?: boolean; size?: ArrowSize; iconColor?: string; showCircle?: boolean; } declare class AddToCartIcon extends Component { render(): React.JSX.Element; } export default AddToCartIcon;