import React from 'react'; import type { ViewStyle } from 'react-native'; import { AncillaryDataProps } from '../types'; interface Contents { left: any; right: any; } export interface FlexViewProps extends AncillaryDataProps { cardContainerStyle?: ViewStyle; containerStyle?: ViewStyle; contents: Contents; feedType?: string; name?: string; postId?: string; } export declare const FlexView: React.FC; export {};