/** * Copyright (c) 2025 Elara AI Pty Ltd * Dual-licensed under AGPL-3.0 and commercial license. See LICENSE for details. */ type StatusVariant = 'error' | 'warning' | 'info' | 'loading'; export interface StatusDisplayProps { variant: StatusVariant; title: string; message?: string; /** Optional code/details block to show below the message */ details?: string; } /** * Reusable component for displaying status messages (errors, warnings, info, loading). */ export declare function StatusDisplay({ variant, title, message, details }: StatusDisplayProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=StatusDisplay.d.ts.map