import type { WithMediaQueryInnerProps, WithMediaQueryStyleProps } from '../../../../libs/fsresponsive'; import type { AccessibilityRole, ViewStyle } from 'react-native'; import React from 'react'; import type { FC, ReactNode } from 'react'; import type { WithConditionalProps } from '../../frameworks/property-binding'; import type { StandardContainerProps } from '../../models'; import { LinkingMethods } from '../../../engagement-utils'; export interface PreStandardizedBackProps { accessible: boolean; accessibilityLabel: string; accessibilityRole: AccessibilityRole; accessibilityHint: string; style: ViewStyle; linkingMethods?: LinkingMethods; nativeID?: string; /** * @TJS-ignore */ children: ReactNode; } export declare type BaseBackTriggerProps = WithMediaQueryInnerProps>; export declare type BackTriggerProps = WithConditionalProps & WithMediaQueryStyleProps; export declare const BaseBackTrigger: FC; export declare const BackTrigger: React.FC & WithConditionalProps>; export default BackTrigger;