export type AsyncImageSrc = () => Promise; export declare function loadImages(...urls: (string | AsyncImageSrc)[]): Promise<(string | void)[]>; export declare function useAsyncImage(url?: string | AsyncImageSrc): string | undefined;