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