import { Theme } from '@naturacosmeticos/natds-themes';
import { BadgeProps } from './Badge.props';
export declare type BadgeVariant = 'standard' | 'pulse' | 'dot';
declare type BadgeStyleProps = Pick<BadgeProps, 'variant' | 'color' | 'brand'>;
declare const styles: (data?: (BadgeStyleProps & {
    theme?: Theme | undefined;
}) | undefined) => import("jss").Classes<"label" | "badge" | "@keyframes badge">;
export default styles;
