import type { FC } from 'react'; import type { StyleProp, ViewStyle } from 'react-native'; export interface SerializableProductTileGhostProps { style?: ViewStyle; height?: number; width?: number; backgroundColor?: string; foregroundColor?: string; } export interface ProductTileGhostProps extends Omit { style?: StyleProp; } export declare const ProductTileGhost: FC;