import { DefaultProps, KubedSizes } from '../theme'; import { BadgeAnchor } from './BadgeAnchor'; export { BadgeAnchor }; export interface BadgeProps extends DefaultProps { /** Badge color from theme */ color?: string | 'default' | 'primary' | 'secondary' | 'success' | 'warning' | 'error'; /** Display shadow or not */ shadow?: boolean; /** Display Dot or not */ dot?: boolean; /** Predefined button size */ size?: KubedSizes; /** Disable animation status or not, only affect when dot is true */ motion?: boolean; } export declare const Badge: import("../utils/types").ComponentWithAs<"div", BadgeProps>; //# sourceMappingURL=Badge.d.ts.map