import React from 'react'; import type { StyleProp, ViewStyle } from 'react-native'; export interface SerializableEngagementCompGhostProps { style?: ViewStyle; height?: number | string; backgroundColor?: string; foregroundColor?: string; } export interface EngagementCompGhostProps extends Omit { style?: StyleProp; } export declare const EngagementCompGhost: React.FC;