import React from 'react';
interface IconProps {
type: string;
size?: number;
color?: string;
}
declare const Icon: React.FC<IconProps>;
export default Icon;
export declare function HomeIcon({ fill }: {
fill?: string | undefined;
}): import("react/jsx-runtime").JSX.Element;