import './Badge.scss';
import React, { type ReactNode } from 'react';
export type BadgeVariant = 'primary' | 'primary-light' | 'lightgray' | 'gray' | 'ghost' | 'orange' | 'location';
export interface BadgeProps {
    children?: ReactNode;
    variant?: BadgeVariant;
    size?: 'xs' | 'md' | 'lg';
    noMargins?: boolean;
    rounded?: boolean;
    inline?: boolean;
}
declare const Badge: ({ children, variant, size, noMargins, rounded, inline, }: BadgeProps) => React.JSX.Element;
export default Badge;
//# sourceMappingURL=Badge.d.ts.map