import { ReactNode, ReactElement } from 'react'; export interface StatusProps { children: ReactNode; /** * Visual intent color to apply to status badge. */ intent?: 'basic' | 'success' | 'primary' | 'warning' | 'error' | 'danger'; } declare const Status: ({ children, intent }: StatusProps) => ReactElement; export default Status;