export interface IProgressBar { /** Duration in milliseconds for the progress bar to complete */ duration: number; /** Flag to reset the progress bar */ resetProgress: boolean; /** Whether the progress bar is hidden */ hidden: boolean; /** Whether the progress bar is completed */ completed: boolean; /** Whether the progress bar is disabled */ disabled: boolean; /** * Identifier used to locate this component in end-to-end tests. * Forwarded to the underlying React Native view. */ testID?: string; } /** * @deprecated Use `IProgressBar`. */ export type ProgressBarProps = IProgressBar;