import React from 'react'; import type { StyleProp, ViewStyle } from 'react-native'; export interface SerializableCartItemGhostProps { style?: ViewStyle; contentBackgroundColor?: string; contentForegroundColor?: string; width?: number; height: number; } export interface CartItemGhostProps extends Omit { style?: StyleProp; width?: number; height?: number; contentBackgroundColor?: string; contentForegroundColor?: string; } export declare const CartItemGhost: React.FC;