import { HttpErrorResponse } from '@angular/common/http'; import { Observable } from 'rxjs'; export type SuspenseInput = T | Observable | Promise; export type SuspenseData = any; export type SuspenseLoading = boolean | any; export type SuspenseError = boolean | string | HttpErrorResponse | any; export declare class SuspenseIfContext { readonly $implicit: T; constructor(value: T); }