import React from 'react'; interface LoadingBarProps { title: string; noColor?: boolean; noProgressBar?: boolean; } declare const LoadingBar: ({ title, noColor, noProgressBar }: React.PropsWithChildren) => React.JSX.Element; export { LoadingBar };