export interface ProgressiveImageProps { lowQualitySrc: string; highQualitySrc: string; } type ProgressiveImage = { src: string; isBlurred: boolean; }; export declare const useProgressiveImg: ({ lowQualitySrc, highQualitySrc, }: ProgressiveImageProps) => ProgressiveImage; export {};