import { LoadingState } from "./LoadingState"; import { ErrorState } from "./ErrorState"; import { AbstractSkeletosState } from "../../extendible/AbstractSkeletosState"; import { SkeletosCursor } from "../../base/SkeletosCursor"; /** * Convenience super-class for display loading and error indicators in the UI. Use the loading and error props * to display loading and error in whichever way in your UI. */ export declare class LoadingAndErrorState extends AbstractSkeletosState { readonly loadingCursor: SkeletosCursor; readonly loading: LoadingState; readonly errorCursor: SkeletosCursor; readonly error: ErrorState; }