import React from 'react'; import type { ImageStyle, StyleProp, TextStyle, ViewStyle } from 'react-native'; import type { CommerceTypes } from '../../../libs/fscommerce'; export interface SerializableCategoryBoxProps extends CommerceTypes.Category { imageStyle?: ImageStyle; showImage?: boolean; style?: ViewStyle; titleStyle?: TextStyle; underlayColor?: string; } export interface CategoryBoxProps extends Omit { imageStyle?: StyleProp; onPress?: (item: CommerceTypes.Category) => void; style?: StyleProp; titleStyle?: StyleProp; } export declare const CategoryBox: React.MemoExoticComponent<(props: CategoryBoxProps) => JSX.Element>;