import type { ImageModifiers } from './utils'; /** * Parameters (option and value pairs) that can be used in the segment of the Cloudinary transformation URL. * Options and their respective values are connected by an underscore (eg `w_250` for width of 250px.). * Multiple parameters are comma separated (eg. `w_250,h_250`). * * `keyMap` maps the option to its option prefix. * `valueMap` is used for grouping options using the same `keyMap` value under a 'category', allowing for easier usage and custom labelling in the component context. * * Transformation URL structure: * https://cloudinary.com/documentation/transformation_reference * * Transformation URL parameters (options and values): * https://cloudinary.com/documentation/image_transformations#transformation_url_syntax * */ export declare const operationsGenerator: (modifiers?: { [key: string]: string; }) => string; export declare function getImageUrl(src: string, modifiers?: Partial): string;