import { FeatureState } from '@grafana/data';
export interface FeatureBadgeProps {
featureState: FeatureState;
tooltip?: string;
}
export declare const FeatureBadge: ({ featureState, tooltip }: FeatureBadgeProps) => import("react/jsx-runtime").JSX.Element;