import React from 'react'; import type { View } from 'react-native'; import { type VStackProps } from '../../layout/VStack'; export type ContentCardBaseProps = VStackProps; export type ContentCardProps = ContentCardBaseProps; export declare const ContentCard: React.NamedExoticComponent< import('@coinbase/cds-common').SharedProps & import('../../styles/styleProps').StyleProps & { children?: React.ReactNode; style?: import('react-native').Animated.WithAnimatedValue< import('react-native').StyleProp >; animated?: boolean; elevation?: import('@coinbase/cds-common').ElevationLevels; font?: import('@coinbase/cds-common').ThemeVars.FontFamily | 'inherit'; pin?: import('@coinbase/cds-common').PinningDirection; bordered?: boolean; borderedTop?: boolean; borderedBottom?: boolean; borderedStart?: boolean; borderedEnd?: boolean; borderedHorizontal?: boolean; borderedVertical?: boolean; dangerouslySetBackground?: string; } & Omit & { ref?: React.Ref; } >; //# sourceMappingURL=ContentCard.d.ts.map