/// import { IconProps } from './Icon'; interface Props extends IconProps { fillInner?: string; } export default function HelpIcon({ fill, fillInner, ...iconProps }: Props): JSX.Element; export {};