import { type Provider, type ImageOutput } from '@imgly/plugin-ai-generation-web'; import type CreativeEditorSDK from '@cesdk/cesdk-js'; import { EachLabsProviderConfiguration } from './types'; /** * Input interface for Nano Banana Pro image-to-image */ export type NanoBananaProImage2ImageInput = { prompt: string; image_url?: string; image_urls?: string[]; resolution?: '1K' | '2K' | '4K'; }; /** * Nano Banana Pro Edit - Transform images using multi-style AI via EachLabs * * Features: * - Multi-style image transformation * - Multiple resolution options (1K, 2K, 4K) * - Supports up to 10 reference images */ export declare function NanoBananaProImage2Image(config: EachLabsProviderConfiguration): (context: { cesdk: CreativeEditorSDK; }) => Promise>; export default NanoBananaProImage2Image;