import type { ReviewIndicatorProps } from '../../../../libs/fscomponents'; import type { WithMediaQueryInnerProps, WithMediaQueryStyleProps } from '../../../../libs/fsresponsive'; import type { AccessibilityRole, ViewStyle } from 'react-native'; import type { FC } from 'react'; import type { WithConditionalProps, WithDataNumberProps } from '../../frameworks/property-binding'; import type { StandardProps } from '../../models'; export declare type SerializableProps = Omit; export interface PreStandardizedBaseSerializableReviewIndicatorProps extends SerializableProps { accessible: boolean; accessibilityLabel: string; accessibilityRole: AccessibilityRole; accessibilityHint: string; style: ViewStyle; nativeID?: string; } export declare type BaseSerializableReviewIndicatorProps = WithMediaQueryInnerProps>; export declare type SerializableReviewIndicatorProps = WithConditionalProps & WithDataNumberProps, 'base' | 'value'>; export declare const SerializableReviewIndicator: FC; export default SerializableReviewIndicator;