export declare type ImageDataType = {
    src: string;
    alt: string;
};
export declare type StrapiImageType = {
    data?: {
        attributes: {
            url?: string | null;
            alternativeText?: string | null;
        };
    };
};
export declare const imageProps: (image: StrapiImageType | StrapiImageType['data'] | undefined | null) => ImageDataType;
