import type { FC } from 'react'; import type { AccessibilityRole, ImageProps, ImageStyle } from 'react-native'; import type { WithMediaQueryInnerProps, WithMediaQueryStyleProps } from '../../../../fsresponsive'; import type { OpaqueSource } from '../../../common/models/unique-props'; import type { WithConditionalProps, WithDataTextProps } from '../../../frameworks/property-binding'; export interface PreStandardizedSerializableImageProps extends Pick { accessible: boolean; accessibilityLabel: string; accessibilityRole: AccessibilityRole; accessibilityHint: string; source: OpaqueSource | string; style: ImageStyle; } export declare type BaseSerializableImageProps = WithMediaQueryInnerProps; export declare type SerializableImageProps = WithConditionalProps & WithDataTextProps, 'source'>; export declare const SerializableImage: FC; export default SerializableImage;