import type { JSX, ReactNode } from 'react'; import type { Severity } from '../../constants/severity.types'; export interface InlineStatusProps { children: ReactNode; severity?: Severity; customIcon?: ReactNode; disableIcon?: boolean; fullWidth?: boolean; size?: 'sm' | 'md'; } export declare function InlineStatus({ children, severity, customIcon, disableIcon, fullWidth, size, }: InlineStatusProps): JSX.Element;