import type { AccessibilityRole, ViewStyle } from 'react-native'; import React from 'react'; import type { FC } from 'react'; import type { StandardContainerProps } from '../../../models'; export interface PreStandardizedTabZoneProps { style: ViewStyle; accessible: boolean; accessibilityLabel: string; accessibilityRole: AccessibilityRole; accessibilityHint: string; numberOfTabs: number; /** * @TJS-ignore */ children: React.ReactNode; nativeID: string; } export declare type BaseTabZoneProps = StandardContainerProps; export declare type TabZoneProps = BaseTabZoneProps; export declare const TabZone: FC; export default TabZone;