declare function roundedBadgeObject(props: Record): { bg: string; _text: { color: string; }; borderWidth: string; borderColor: string; rounded: string; }; export declare const BadgeOverride: { Badge: { defaultProps: { variant: string; colorScheme: string; }; variants: { rounded: typeof roundedBadgeObject; }; }; }; export default BadgeOverride;