/** * Base CSS classes for button elements used in map annotation overlays — * `AnnotationRenderer` (simple-pill button) and `ShapeAnnotationLabel` (custom pill button). * * Resets native button appearance while preserving font inheritance and keyboard * focus accessibility. Matches the focus ring pattern in InteractiveDecoration.tsx * so all interactive map overlay buttons behave consistently for keyboard users. * * Compose additional appearance classes on top via `twMerge`. * * @internal */ export declare const ANNOTATION_BUTTON_RESET_CLASSES = "appearance-none m-0 cursor-pointer border-0 font-inherit focus:outline-none focus-visible:ring-2 focus-visible:ring-offset-1";