import { FunctionComponent, PropsWithChildren } from 'react';

interface BadgeProps extends PropsWithChildren {
}
declare const Badge: FunctionComponent<BadgeProps>;

export { Badge as default };
export type { BadgeProps };
