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 { WithConditionalProps, WithDataTextProps } from '../../../frameworks/property-binding'; import type { StandardContainerProps } from '../../../models'; export interface PreStandardizedSelectOptionTriggerProps { accessible: boolean; accessibilityLabel: string; accessibilityRole: AccessibilityRole; accessibilityHint: string; style: ViewStyle; /** * @TJS-ignore */ children: ReactNode; name: string; value: string; nativeID?: string; } export declare type BaseSelectOptionTriggerProps = WithMediaQueryInnerProps>; export declare type SelectOptionTriggerProps = WithConditionalProps & WithDataTextProps, 'name' | 'value'>; export declare const BaseSelectOptionTrigger: FC; export declare const SelectOptionTrigger: React.FC & Partial, string, "name" | "value"> & WithConditionalProps>; export default SelectOptionTrigger;