import { View, type ViewProps } from 'react-native'; import { type IProgressProps } from '@cdx-ui/primitives'; import { type ProgressBarTrackVariantProps } from './styles'; export interface ProgressBarProps extends IProgressProps, ProgressBarTrackVariantProps { readonly className?: string; } export interface ProgressBarIndicatorProps extends ViewProps { readonly className?: string; } declare const ProgressBarRootComponent: import("react").ForwardRefExoticComponent>; declare const ProgressBarIndicatorComponent: import("react").ForwardRefExoticComponent>; type ProgressBarCompoundComponent = typeof ProgressBarRootComponent & { Indicator: typeof ProgressBarIndicatorComponent; }; export declare const ProgressBar: ProgressBarCompoundComponent; export {}; //# sourceMappingURL=index.d.ts.map