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