import type { ReactElement, ReactNode } from 'react'; import React from 'react'; import type { StyleProp, ViewProps, ViewStyle } from 'react-native'; export interface CardProps extends ViewProps { /** * Card's content. */ children?: ReactNode; /** * Visual intent color to apply to card. */ intent?: 'primary' | 'secondary' | 'success' | 'warning' | 'danger' | 'archived' | 'neutral'; /** * Additional style. */ style?: StyleProp; /** * Testing id of the component. */ testID?: string; variant?: 'basic' | 'super-round'; } declare const _default: (({ intent, children, variant, ...nativeProps }: CardProps) => ReactElement) & { Data: ({ intent, children, ...nativeProps }: import("./DataCard").DataCardProps) => ReactElement; DataContent: import("@emotion/native").StyledComponent | undefined; }>; }; export default _default;