import React from 'react'; import type { FeatherIconName, FeatherNamedIconProps } from './types'; interface IconInnerProps extends FeatherNamedIconProps { icon: FeatherIconName; } declare const IconInner: ({ icon }: IconInnerProps) => React.ReactNode; export default IconInner;