import { z } from 'zod'; import { ImageSchema } from '../schemas/iiif.js'; import { ImageServiceSchema } from '../schemas/image-service.js'; import { ProfileProperties, MajorVersion } from '../lib/types.js'; type ImageType = z.infer; type ImageServiceType = z.infer; export declare function getMajorIiifVersionFromImageService(imageService: ImageServiceType): MajorVersion; export declare function getProfileProperties(parsedImage: ImageType | ImageServiceType): ProfileProperties; export {};