import type { ResponsiveImageAttributes, GetImageAttributesOptions } from './interfaces'; /** * Generates a responsive image URL, `srcSet`, and `sizes` attributes * based on the input options such as `width`, `sizes`, and breakpoints. */ export declare function getResponsiveImageAttributes(opts: GetImageAttributesOptions): ResponsiveImageAttributes;