export interface StatusProps { /** * Type of the status. */ type: 'error' | 'success' | 'inactive' | 'warning'; /** * Any content. */ children: React.ReactNode; /** * Custom class name. */ className?: string; /** * Tooltip content */ tooltipContent?: React.ReactNode; } /** * @deprecated Use `StatusIndicator` from `@tedi-design-system/react/tedi` instead. */ export declare const Status: (props: StatusProps) => JSX.Element; export default Status;