import React from 'react'; import type { StyleProp, TextStyle } from 'react-native'; import type { Action, CardProps, EmitterProps, JSON, ScreenProps, StoryGradient } from '../types'; export interface ComponentProps extends ScreenProps, EmitterProps { containerStyle?: StyleProp; story?: JSON; contents: any; api?: any; storyGradient?: StoryGradient; } export interface ComponentProps extends CardProps { contents: any; actions?: Action; } export declare const VideoCard: React.FunctionComponent;