export interface IComponentStatusInfoState {
    name: string;
    description: string;
    success: string;
    link?: InformationLink;
}
export interface InformationLink {
    link: string;
    renderedText: string;
}
export declare const ComponentStatusInfoState: [IComponentStatusInfoState];
