import React from 'react'; import type { Icon as PhosphorIcon, IconWeight as PhosphorIconWeight } from '@phosphor-icons/react'; import type { GeneratedIconProps } from './generateIconComponent.js'; import type { MappedOmit } from '@contentful/f36-core'; type IconWeight = Extract; export declare function wrapPhosphorIcon(PhosphorIcon: PhosphorIcon): ({ color, size, ...props }: MappedOmit & { weight?: IconWeight; }) => React.JSX.Element; export {};