import type { WithMediaQueryInnerProps, WithMediaQueryStyleProps } from '../../../../../libs/fsresponsive'; import type { AccessibilityRole, ViewStyle } from 'react-native'; import type { FC, ReactNode } from 'react'; import type { WithConditionalProps, WithDataTextProps } from '../../../frameworks/property-binding'; import type { StandardContainerProps } from '../../../models'; export interface PreStandardizedSetValueTriggerProps { nativeID: string; accessible: boolean; accessibilityLabel: string; accessibilityRole: AccessibilityRole; accessibilityHint: string; style: ViewStyle; /** * @TJS-ignore */ children: ReactNode; name: string; value: string; } export declare type BaseSetFormValueTriggerProps = WithMediaQueryInnerProps>; export declare type SetFormValueTriggerProps = WithConditionalProps & WithDataTextProps, 'name' | 'value'>; export declare const SetFormValueTrigger: FC; export default SetFormValueTrigger;