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