import type { ReactElement, ReactNode } from 'react'; import type { StyleProp, ViewStyle, ViewProps } from 'react-native'; export interface DataCardProps extends ViewProps { /** * Card's content. */ children?: ReactNode; /** * Visual intent color to apply to card. */ intent?: 'primary' | 'info' | 'success' | 'warning' | 'danger' | 'archived'; /** * Additional style. */ style?: StyleProp; /** * Testing id of the component. */ testID?: string; } declare const DataCard: ({ intent, children, ...nativeProps }: DataCardProps) => ReactElement; export default DataCard;