import { SentryEvent } from '../../types'; import { ComponentPropsWithoutRef } from 'react'; type Platform = "python" | "javascript" | "node" | "ruby" | "csharp" | string; type PlatformIconProps = ComponentPropsWithoutRef<"svg"> & { size?: number; platform?: Platform; event?: SentryEvent; height?: number; width?: number; title?: string; }; export default function PlatformIcon({ platform, event, size, title, ...props }: PlatformIconProps): import("react/jsx-runtime").JSX.Element; export {};