import React from "react"; export type StatusType = "success" | "warning" | "critical" | "inactive" | "informative"; export interface StatusLabelType { readonly statusLabel: string; readonly statusType?: StatusType; } interface StatusLabelProps { /** * Text to display. */ readonly text: string; /** * Alignment of text */ readonly alignment?: "start" | "end"; /** * Status color of the square beside text */ readonly status?: StatusType; } export declare function StatusLabel({ text, alignment, status, }: StatusLabelProps): React.JSX.Element; export {};