export interface AppStatusBarProps { /** The message to be displayed in the status bar. */ message: string; /** Determines the color of the bar. */ severity: 'info' | 'warning' | 'error'; } /** A component to display a general status. */ export declare const AppStatusBar: ({ message, severity }: AppStatusBarProps) => import("react").JSX.Element;