import React from 'react';
import './Badge.scss';
import { Props } from './Badge.types';
export default class Badge extends React.Component<Props> {
    static defaultProps: {
        theme: "primary" | "secondary" | "success" | "error" | "default";
        weight: "light" | "lighter" | "bold" | "normal";
        className: string;
    };
    render(): JSX.Element;
}
