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