import React from 'react'; declare const placement: ["topLeft", "topRight", "bottomLeft", "bottomRight"]; export type BadgeAnchorPlacement = (typeof placement)[number]; interface Props { placement?: BadgeAnchorPlacement; className?: string; } type NativeAttrs = Omit, keyof Props>; export type BadgeAnchorProps = Props & NativeAttrs; declare const BadgeAnchor: React.FC>; export default BadgeAnchor;