///
import { ProgressBarAndroidProps } from 'react-native';
export interface ProgressBarProps extends ProgressBarAndroidProps {
}
export declare const ProgressBarDefaultProps: {
animating: boolean;
indeterminate: boolean;
styleAttr: "Normal" | "Horizontal" | "Small" | "Large" | "Inverse" | "SmallInverse" | "LargeInverse" | undefined;
};
/**
* # 💈 ProgressBar
*
* Used to indicate that the app is loading or there is some activity in the app.
*
* ## Usage
```jsx
import * as React from 'react';
import { ProgressBar } from '@bluebase/components';
const MyComponent = () => (
);
export default MyComponent;
```
*/
export declare const ProgressBar: import("react").ComponentType;