import { LocationType } from "../../../types.js";
interface FloatingIconPropTypes {
    avatar_url: string;
    location: LocationType;
}
export default function FloatingIcon({ avatar_url, location }: FloatingIconPropTypes): import("react/jsx-runtime").JSX.Element;
export {};
