import * as icons from "./icons"; export type IconName = keyof typeof icons; export type IconProps = { secondary?: boolean; fadeOut?: boolean; disabled?: boolean; size?: number; }; type Props = IconProps & { name: IconName; }; declare const Icon: ({ name, secondary, size, fadeOut, disabled }: Props) => import("preact").JSX.Element; export default Icon;