import { URI } from "../../../../base/common/uri.js"; export declare const IChatImageCarouselService: import("../../../../platform/instantiation/common/instantiation.js").ServiceIdentifier; export interface IChatImageCarouselService { readonly _serviceBrand: undefined; /** * Opens the image carousel for the given resource URI, collecting all images * from the focused chat widget's responses to populate the carousel. * * @param resource The URI of the clicked image to start the carousel at. * @param data Optional raw image data (e.g. for input attachment images that are Uint8Arrays). */ openCarouselAtResource(resource: URI, data?: Uint8Array): Promise; }