import type { WithMediaQueryInnerProps, WithMediaQueryStyleProps } from '../../../../libs/fsresponsive'; import type { AccessibilityRole, ViewStyle } from 'react-native'; import React from 'react'; import type { FC } from 'react'; import type { WithConditionalProps } from '../../frameworks/property-binding'; import type { StandardContainerProps } from '../../models'; export interface PreStandardizedModalRejectTriggerProps { accessible: boolean; accessibilityLabel: string; accessibilityRole: AccessibilityRole; accessibilityHint: string; style: ViewStyle; nativeID: string; /** * @TJS-ignore */ children: React.ReactNode; } export declare type BaseModalRejectTriggerProps = WithMediaQueryInnerProps>; export declare type ModalRejectTriggerProps = WithConditionalProps & WithMediaQueryStyleProps; export declare const BaseModalRejectTrigger: FC; export declare const ModalRejectTrigger: FC; export default ModalRejectTrigger;