import { ZImage_Props } from '@zurich/dev-utils/code/Image'; export type ImageColumnSize = 1 | 2 | 3 | 4 | 5 | 6; export type Image_StyleProps = { /** ## Image [🔗](./atoms/image) * * The parameter `z-image` defines the aspect ratio for the image. Possible values are: `full-width`, * `3:2`, `1:1`, `4:3`, `16:9` * */ 'z-image'?: ZImage_Props['config']; /** * The parameter `image-size` defines the size of the image. Possible values are: `1`,`2`, `3`, * `4`, `5`, `6` */ 'image-size'?: ZImage_Props['size']; /** * The parameter `image-copyright` defines the copyright text of the image. */ 'image-copyright'?: string; };