/// import { IconProps } from './Icon'; interface Props extends IconProps { filled?: boolean; } export default function HomeIcon({ className, fill, filled, ...iconProps }: Props): JSX.Element; export {};