import { CommonProviderConfiguration, type Provider } from '@imgly/plugin-ai-generation-web';
import CreativeEditorSDK from '@cesdk/cesdk-js';
type IdeogramV3RemixUIInput = {
    prompt: string;
    image_url: string;
    style?: 'AUTO' | 'GENERAL' | 'REALISTIC' | 'DESIGN';
    image_size?: string | {
        width: number;
        height: number;
    };
    rendering_speed?: 'TURBO' | 'BALANCED' | 'QUALITY';
    strength?: number;
};
type IdeogramV3RemixOutput = {
    kind: 'image';
    url: string;
};
interface ProviderConfiguration extends CommonProviderConfiguration<IdeogramV3RemixUIInput, IdeogramV3RemixOutput> {
}
export declare function IdeogramV3Remix(config: ProviderConfiguration): (context: {
    cesdk: CreativeEditorSDK;
}) => Promise<Provider<'image', IdeogramV3RemixUIInput, IdeogramV3RemixOutput>>;
export {};
