import { AllStyleProps } from '../../../utils/styledSystem'; export declare const Icon: ({ id, title, src, color, width, height, tabIndex, onEnter, viewBox, ...styleProps }: IconProps) => JSX.Element; export interface IconProps extends AllStyleProps { id?: string; title?: string; src: any; onEnter?: Function; onFocus?: Function; onBlur?: Function; tabIndex?: string; color?: string; width?: string | number; height?: string | number; onClick?: Function; viewBox?: string; }