import type { FC } from 'react'; import type { StyleProp, ViewStyle } from 'react-native'; import type { ProductIndexProps } from './ProductIndex'; import type { ProductTileGhostProps } from './ProductTileGhost'; export interface SerializableProductIndexGhostProps { style?: ViewStyle; tileProps?: ProductTileGhostProps; } export interface ProductIndexGhostProps extends Omit { style?: StyleProp; renderRefineActionBar?: ProductIndexProps['renderRefineActionBar']; } export declare const ProductIndexGhost: FC;