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'; export interface PreStandardizedLinkProps { accessible: boolean; accessibilityLabel: string; accessibilityRole: AccessibilityRole; accessibilityHint: string; style: ViewStyle; anchorHref: string; nativeID?: string; /** * @TJS-ignore */ children: ReactNode; } export declare type BaseAnchorTriggerProps = WithMediaQueryInnerProps>; export declare type AnchorTriggerProps = WithConditionalProps & WithDataTextProps, 'anchorHref'>; export declare const AnchorTrigger: FC; export default AnchorTrigger;