import type { WithMediaQueryInnerProps, WithMediaQueryStyleProps } from '../../../../libs/fsresponsive'; import type { AccessibilityRole, ViewStyle } from 'react-native'; import type { FC, ReactNode } from 'react'; import type { WithConditionalProps, WithDataTextProps } from '../../frameworks/property-binding'; import type { StandardContainerProps } from '../../models'; import { LinkingMethods } from '../../../engagement-utils'; export interface PreStandardizedLinkProps { accessible: boolean; accessibilityLabel: string; accessibilityRole: AccessibilityRole; accessibilityHint: string; style: ViewStyle; openInNewTab: boolean; href: string; nativeID?: string; replace?: boolean; linkingMethods: LinkingMethods; /** * @TJS-ignore */ children: ReactNode; } export declare type BaseLinkTriggerProps = WithMediaQueryInnerProps>; export declare type LinkTriggerProps = WithConditionalProps & WithDataTextProps, 'href'>; export declare const LinkTrigger: FC; export default LinkTrigger;