import type { WithMediaQueryInnerProps, WithMediaQueryStyleProps } from '../../../../libs/fsresponsive'; import type { AccessibilityRole, ViewStyle } from 'react-native'; import type { FC, ReactNode } from 'react'; import type { WithConditionalProps, WithDataMultiArrayProps, WithDataTextProps } from '../../frameworks/property-binding'; import type { StandardContainerProps } from '../../models'; export interface PreStandardizedExternalActionTriggerProps { accessible: boolean; accessibilityLabel: string; accessibilityRole: AccessibilityRole; accessibilityHint: string; style: ViewStyle; actionName: string; payload?: unknown[]; nativeID?: string; /** * @TJS-ignore */ children: ReactNode; } export declare type BaseExternalActionTriggerProps = WithMediaQueryInnerProps>; export declare type ExternalActionTriggerProps = WithConditionalProps & WithDataTextProps, unknown[], 'payload'>, 'actionName'>; export declare const BaseExternalActionTrigger: FC; export declare const ExternalActionTrigger: FC; export default ExternalActionTrigger;