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