import InternalBadge from './Badge';
import Ribbon from './Ribbon';
export type { BadgeProps } from './Badge';
export type { RibbonProps } from './Ribbon';
export type { ScrollNumberProps } from './ScrollNumber';
type CompoundedComponent = typeof InternalBadge & {
    Ribbon: typeof Ribbon;
};
declare const Badge: CompoundedComponent;
export default Badge;
