import type { WithMediaQueryInnerProps, WithMediaQueryStyleProps } from '../../../../libs/fsresponsive'; import type { AccessibilityRole, ViewProps, 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 PreStandardizedSafeAreaViewProps extends Pick { style: ViewStyle; accessible: boolean; accessibilityLabel: string; accessibilityRole: AccessibilityRole; accessibilityHint: string; collapsible?: boolean; /** * @TJS-ignore */ children: React.ReactNode; } export declare type BaseSerializableSafeAreaViewProps = WithMediaQueryInnerProps>; export declare type SerializableSafeAreaViewProps = WithConditionalProps & WithMediaQueryStyleProps; export declare const SerializableSafeAreaView: FC; export default SerializableSafeAreaView;