import React from 'react';
type StaticDelivrImageProps = {
    src: string;
    width?: number;
    height?: number;
    quality?: number;
    format?: 'webp' | 'jpeg' | 'png' | 'avif';
    alt?: string;
    className?: string;
};
export declare const StaticDelivrImage: React.FC<StaticDelivrImageProps>;
export {};
