import { Image, ImageWithoutKey } from '../../Viewer/types'; import { HTTP, LoaderType, LoadingState } from '../../types'; export interface Loaded { image: ImageWithoutKey; loaded: number; } export interface ImagesLoadState { loadingStates: LoadingState[]; images: Image[]; } export declare type Props = { imageIds: string[]; type?: LoaderType; } & Partial; export interface OnImagesLoaded { (): void; }