import type { FC } from 'react'; import React from 'react'; import type { AccessibilityRole, ImageProps, ViewStyle } 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'; import type { StandardContainerProps } from '../../models'; export interface PreStandardizedSerializableBackgroundImageProps extends Pick { accessible: boolean; accessibilityLabel: string; accessibilityRole: AccessibilityRole; accessibilityHint: string; source: OpaqueSource | string; style: ViewStyle; /** * @TJS-ignore */ children: React.ReactNode; } export declare type BaseSerializableBackgroundImageProps = WithMediaQueryInnerProps>; export declare type SerializableBackgroundImageProps = WithConditionalProps & WithDataTextProps, 'source'>; export declare const SerializableBackgroundImage: FC; export default SerializableBackgroundImage;