import type { PropsWithChildren } from 'react';
type BadgeIntent = 'default' | 'highlight';
type BadgeProps = PropsWithChildren & {
    intent?: BadgeIntent;
};
export declare function Badge(props: BadgeProps): import("@emotion/react/jsx-runtime").JSX.Element;
export {};
