import type { WithMediaQueryInnerProps, WithMediaQueryStyleProps } from '../../../../libs/fsresponsive'; import type { AccessibilityRole, ViewStyle } from 'react-native'; import React from 'react'; import type { FC } from 'react'; import type { WithConditionalProps } from '../../frameworks/property-binding'; import type { CustomDataSourceOptions, StandardContentModelContainerProps, URLDataSourceOptions } from '../../models'; export interface ContentModelZoneErrorContext { message: string; slotId: string | undefined; } export interface PreStandardizedContentModelZoneProps { accessible: boolean; accessibilityLabel: string; accessibilityRole: AccessibilityRole; accessibilityHint: string; style: ViewStyle; nativeID?: string; layoutDataSource: CustomDataSourceOptions<'layout'> | URLDataSourceOptions<'layout'>; idParam: string; /** * @TJS-ignore */ children: React.ReactNode; } export declare type BaseContentModelZoneProps = WithMediaQueryInnerProps>; export declare type ContentModelZoneProps = WithConditionalProps & WithMediaQueryStyleProps; export declare const ContentModelZone: FC; export default ContentModelZone;