import type { StyleProp, ViewStyle, ViewProps } from 'react-native'; import type { ReactElement, ReactNode } from 'react'; export interface StatusProps extends ViewProps { children: ReactNode; /** * Whether the Status Badge is visible. */ visible?: boolean; /** * Visual intent color to apply to Status Badge. */ intent?: 'success' | 'warning' | 'danger' | 'info' | 'archived' | 'primary' | 'neutral'; /** * Additional style. */ style?: StyleProp; /** * Testing id of the component. */ testID?: string; } declare const Status: ({ children, visible, intent, style, testID, ...nativeProps }: StatusProps) => ReactElement; export default Status;