import React from 'react'; import { IIcon } from "../../core/types"; interface IClearIcon extends IIcon { withClear: boolean; onClick?: React.MouseEventHandler; } export declare const ClearIcon: React.FC; export {};