interface GetImagePropsOptions {
fixed?: [number, number];
fluid?: number | [number, number];
smart?: boolean;
}
const getImageProps: (imageUrl: string, options?: GetImagePropsOptions) => {
src?: undefined;
srcSet?: undefined;
width?: undefined;
height?: undefined;
sizes?: undefined;
}