export default function useImage({ src, fallback }: { src: string; fallback?: string; }): { loading: boolean; src: string | undefined; };