/// declare type FavoriteIconProps = { variant: 'filled' | 'outlined'; color?: string; width?: number; height?: number; }; declare const FavoriteIcon: ({ variant, color, width, height, }: FavoriteIconProps) => JSX.Element; export default FavoriteIcon;