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 interface PreStandardizedBaseSerializableProgressBarProps { accessible: boolean; accessibilityLabel: string; accessibilityRole: AccessibilityRole; accessibilityHint: string; style: ViewStyle; nativeID?: string; min: number; max: number; value: number; barBackgroundColor?: string; progressColor?: string; barBorderWidth?: number; barBorderColor?: string; barWidth?: string; barHeight?: number; } export declare type BaseSerializableProgressBarProps = WithMediaQueryInnerProps>; export declare type SerializableProgressBarProps = WithConditionalProps & WithDataNumberProps, 'max' | 'min' | 'value'>; export declare const SerializableProgressBar: FC; export default SerializableProgressBar;