type ObjectIconProps = {
    name: string;
    iconName?: string;
};
declare const ObjectIcon: ({ name, iconName }: ObjectIconProps) => import("preact/jsx-runtime").JSX.Element;
export default ObjectIcon;
