import { Observable } from 'rxjs'; /** * @internal */ export type WithLoadingIndicatorOptions = { whileLoading: T; source: Observable; }; /** * @internal */ export declare function withLoadingIndicator({ whileLoading, source }: WithLoadingIndicatorOptions): Observable;