import { type OpenAPIV3 } from 'openapi-types'; import CreativeEditorSDK, { CreativeEngine } from '@cesdk/cesdk-js'; import { ImageOutput, RenderCustomProperty, GetBlockInput, Provider, Middleware } from '@imgly/plugin-ai-generation-web'; import { ImageQuickActionSupportMap } from '../types'; type ImageProviderConfiguration = { proxyUrl: string; debug?: boolean; middlewares?: Middleware[]; /** * @deprecated Use `middlewares` instead. */ middleware?: Middleware[]; /** * Override provider's default history asset source */ history?: false | '@imgly/local' | '@imgly/indexedDB' | (string & {}); /** * Configure supported quick actions */ supportedQuickActions?: { [quickActionId: string]: Partial[string]> | false | null; }; }; /** * Creates a base provider from schema. This should work out of the box * but may be rough around the edges and should/can be further customized. */ declare function createImageProvider & { image_url?: string; image_urls?: string[]; }>(options: { modelKey: string; name?: string; schema: OpenAPIV3.Document; inputReference: string; useFlow?: 'placeholder' | 'generation-only'; initialize?: (context: { cesdk?: CreativeEditorSDK; engine: CreativeEngine; }) => void; renderCustomProperty?: RenderCustomProperty; supportedQuickActions?: ImageQuickActionSupportMap; getBlockInput?: GetBlockInput<'image', I>; getImageSize?: (input: I) => { width: number; height: number; }; middleware?: Middleware[]; headers?: Record; cesdk?: CreativeEditorSDK; }, config: ImageProviderConfiguration): Provider<'image', I, { kind: 'image'; url: string; }>; export default createImageProvider;