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 Seedream v4.5 text-to-image
 */
export type Seedream45Input = {
    prompt: string;
    image_size?: 'square_hd' | 'square' | 'portrait_4_3' | 'portrait_16_9' | 'landscape_4_3' | 'landscape_16_9';
};
/**
 * Seedream v4.5 - High-quality text-to-image generation via EachLabs
 *
 * Features:
 * - 6 image size options
 * - High-quality generation from ByteDance
 * - Improved facial details and text generation over v4.0
 */
export declare function Seedream45(config: EachLabsProviderConfiguration): (context: {
    cesdk: CreativeEditorSDK;
}) => Promise<Provider<'image', Seedream45Input, ImageOutput>>;
export default Seedream45;
