import { type Provider, type ImageOutput } from '@imgly/plugin-ai-generation-web'; import type CreativeEditorSDK from '@cesdk/cesdk-js'; import { BytedanceProviderConfiguration } from './types'; export type Seedream50Text2ImageInput = { prompt: string; format?: 'square' | 'landscape_16_9' | 'portrait_9_16' | 'landscape_4_3' | 'portrait_3_4'; resolution?: 'resolution_2k' | 'resolution_3k'; }; export declare function Seedream50Text2Image(config: BytedanceProviderConfiguration): (context: { cesdk: CreativeEditorSDK; }) => Promise>; export default Seedream50Text2Image;