import { ImageOutput, type Provider, type CommonProviderConfiguration } from '@imgly/plugin-ai-generation-web';
import CreativeEditorSDK from '@cesdk/cesdk-js';
type NanoBananaProEditInput = {
    prompt: string;
    image_url?: string;
    image_urls?: string[];
    exportFromBlockIds?: number[];
    resolution?: '1K' | '2K' | '4K';
};
export declare function NanoBananaProEdit(config: CommonProviderConfiguration<NanoBananaProEditInput, ImageOutput>): (context: {
    cesdk: CreativeEditorSDK;
}) => Promise<Provider<'image', NanoBananaProEditInput, ImageOutput>>;
declare function getProvider(cesdk: CreativeEditorSDK, config: CommonProviderConfiguration<NanoBananaProEditInput, ImageOutput>): Provider<'image', NanoBananaProEditInput, ImageOutput>;
export default getProvider;
