import * as React from 'react'; export interface IconProps extends React.SVGProps { component?: React.ComponentType; fill?: string; shade?: 'on-light' | 'on-dark'; state?: 'focused' | 'active' | 'inactive' | 'error'; size?: number; title?: string; } declare const IconProps: React.ComponentType; export default IconProps;