import { CommonProviderConfiguration, VideoOutput, type Provider } from '@imgly/plugin-ai-generation-web';
import CreativeEditorSDK from '@cesdk/cesdk-js';
interface ProviderConfiguration extends CommonProviderConfiguration<Veo31FastTextToVideoInput, VideoOutput> {
}
type Veo31FastTextToVideoInput = {
    prompt: string;
    aspect_ratio?: '16:9' | '9:16' | '1:1';
    duration?: '4s' | '6s' | '8s';
    resolution?: '720p' | '1080p';
    generate_audio?: boolean;
    negative_prompt?: string;
    enhance_prompt?: boolean;
    seed?: number;
    auto_fix?: boolean;
};
export declare function Veo31FastTextToVideo(config: ProviderConfiguration): (context: {
    cesdk: CreativeEditorSDK;
}) => Promise<Provider<'video', Veo31FastTextToVideoInput, VideoOutput>>;
declare function getProvider(cesdk: CreativeEditorSDK, config: ProviderConfiguration): Provider<'video', Veo31FastTextToVideoInput, {
    kind: 'video';
    url: string;
}>;
export default getProvider;
