import type { WithMediaQueryInnerProps, WithMediaQueryStyleProps } from '../../../../libs/fsresponsive'; import type { AccessibilityRole, ViewStyle } from 'react-native'; import React from 'react'; import type { FC, ReactNode } from 'react'; import type { OpaqueProductInstanceId } from '../../common/models/unique-props'; import type { WithConditionalProps, WithDataTextProps } from '../../frameworks/property-binding'; import type { StandardContainerProps } from '../../models'; export interface PreStandardizedSelectProductOptionTriggerProps { accessible: boolean; accessibilityLabel: string; accessibilityRole: AccessibilityRole; accessibilityHint: string; style: ViewStyle; optionId: string; value: string; instanceId?: OpaqueProductInstanceId | string; productId?: string; nativeID?: string; /** * @TJS-ignore */ children: ReactNode; } export declare type BaseSelectProductOptionTriggerProps = WithMediaQueryInnerProps>; export declare type SelectProductOptionTriggerProps = WithConditionalProps & WithDataTextProps, 'optionId' | 'productId' | 'value'>; export declare const BaseSelectProductOptionTrigger: FC; export declare const SelectProductOptionTrigger: React.FC & Partial, string, "value" | "productId" | "optionId"> & WithConditionalProps>; export default SelectProductOptionTrigger;