import { type FeatureState } from '@grafana/data';
import { type InfoBoxProps } from './InfoBox';
export interface FeatureInfoBoxProps extends Omit<InfoBoxProps, 'title' | 'urlTitle'> {
    title: string;
    featureState?: FeatureState;
}
/** @deprecated use Alert with severity info */
export declare const FeatureInfoBox: import("react").MemoExoticComponent<import("react").ForwardRefExoticComponent<FeatureInfoBoxProps & import("react").RefAttributes<HTMLDivElement>>>;
