import type { WithMediaQueryInnerProps, WithMediaQueryStyleProps } from '../../../../../libs/fsresponsive'; import type { AccessibilityRole, ViewStyle } from 'react-native'; import type { FC, ReactNode } from 'react'; import type { OpaqueCartInstanceId } from '../../../common/models/unique-props'; import type { WithDataNumberProps, WithDataTextProps } from '../../../frameworks/property-binding'; import type { StandardContainerProps } from '../../../models'; export interface PreStandardizedIncrementCartItemQuantityTriggerProps { accessible: boolean; accessibilityLabel: string; accessibilityRole: AccessibilityRole; accessibilityHint: string; style: ViewStyle; nativeID?: string; /** * @TJS-ignore */ children: ReactNode; instanceId?: OpaqueCartInstanceId | string; productId?: string; quantity?: number; } declare type BaseIncrementCartItemQuantityTriggerProps = WithMediaQueryInnerProps>; export declare type IncrementCartItemQuantityTriggerProps = WithDataNumberProps, 'productId'>, 'quantity'>; export declare const BaseIncrementCartItemQuantityTrigger: FC; export declare const IncrementCartItemQuantityTrigger: FC; export default IncrementCartItemQuantityTrigger;