import { FeatureState } from '@grafana/data';
export interface FeatureBadgeProps {
    featureState: FeatureState;
    tooltip?: string;
}
/**
 * A component for displaying information about different release stages of features, in accordance with the guidelines provided at [Grafana's Release Life Cycle](https://grafana.com/docs/release-life-cycle).
 *
 * https://developers.grafana.com/ui/latest/index.html?path=/docs/information-featurebadge--docs
 */
export declare const FeatureBadge: ({ featureState, tooltip }: FeatureBadgeProps) => import("react/jsx-runtime").JSX.Element;
