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 PreStandardizedPopProps { accessible: boolean; accessibilityLabel: string; accessibilityRole: AccessibilityRole; accessibilityHint: string; style: ViewStyle; linkingMethods: LinkingMethods; nativeID?: string; /** * @TJS-ignore */ children: ReactNode; } export declare type BasePopTriggerProps = WithMediaQueryInnerProps>; export declare type PopTriggerProps = WithConditionalProps & WithMediaQueryStyleProps; export declare const BasePopTrigger: FC; export declare const PopTrigger: React.FC & Partial & WithConditionalProps>; export default PopTrigger;