import { type Provider, type ImageOutput } from '@imgly/plugin-ai-generation-web';
import type CreativeEditorSDK from '@cesdk/cesdk-js';
import { BytedanceProviderConfiguration } from './types';
export type Seedream50Image2ImageInput = {
    prompt: string;
    image_url?: string;
    image_urls?: string[];
    format?: 'auto' | 'square' | 'landscape_16_9' | 'portrait_9_16' | 'landscape_4_3' | 'portrait_3_4';
    resolution?: 'resolution_2k' | 'resolution_3k';
    /** Resolved size string set by middleware when format is 'auto' */
    _resolvedSize?: string;
};
export declare function Seedream50Image2Image(config: BytedanceProviderConfiguration): (context: {
    cesdk: CreativeEditorSDK;
}) => Promise<Provider<'image', Seedream50Image2ImageInput, ImageOutput>>;
export default Seedream50Image2Image;
