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