import React from "react"; type PingerProps = React.HTMLAttributes & { color?: string; }; export default function Pinger({ color, ...props }: PingerProps): React.JSX.Element; export {};