import React from 'react';
import { IconProps } from '../Icon/Icon';
import type { CommonProps } from '../../props/common/types';
type BadgeSize = 'small' | 'medium' | 'large';
export type BadgeProps = CommonProps & {
/** @default neutral */
type?: 'neutral' | 'info' | 'positive' | 'warning' | 'critical' | 'ai';
/** @default medium */
size?: BadgeSize;
/**
* Icon to display at the start of the badge
*
* @example
* ```tsx
* Flexible plan
* ```
*/
leadingIcon?: IconProps['name'];
};
export declare const Badge: React.NamedExoticComponent>;
export {};
//# sourceMappingURL=Badge.d.ts.map