import { PropsWithChildren } from 'react';
type BadgeIntent = 'default' | 'highlight';
type BadgeProps = PropsWithChildren & {
    intent?: BadgeIntent;
};
export declare const StyledBadge: import("@emotion/styled").StyledComponent<{
    theme?: import("@emotion/react").Theme;
    as?: React.ElementType;
} & Pick<BadgeProps, "intent">, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
export declare const Badge: (props: BadgeProps) => import("@emotion/react/jsx-runtime").JSX.Element;
export {};
