bpms_site/.svn/pristine/a1/a1426cf5c93d2650d1eb6e2e0aa4b010c756b579.svn-base
2025-11-02 16:38:49 +03:30

9 lines
421 B
Plaintext

import type { ImageLoaderProps } from './image-config';
import type { ImageProps, ImageLoader, StaticImageData } from './get-img-props';
import { Image } from '../../client/image-component';
declare const unstable_getImgProps: (imgProps: ImageProps) => {
props: import("./get-img-props").ImgProps;
};
export default Image;
export { ImageProps, ImageLoaderProps, ImageLoader, StaticImageData, unstable_getImgProps, };