import { type Provider, type ImageOutput } from '@imgly/plugin-ai-generation-web'; import type CreativeEditorSDK from '@cesdk/cesdk-js'; import { BytedanceProviderConfiguration } from './types'; export type Seedream40Text2ImageInput = { prompt: string; size?: string; }; export declare function Seedream40Text2Image(config: BytedanceProviderConfiguration): (context: { cesdk: CreativeEditorSDK; }) => Promise>; export default Seedream40Text2Image;