import type { BunnyStreamVideo, BunnyStreamVideoResolutionsResponse, NormalizedStreamConfig } from '@/types/index.js'; export declare const getStreamVideo: ({ streamConfig, videoId, }: { streamConfig: NormalizedStreamConfig; videoId: string; }) => Promise; export declare const createStreamVideo: ({ streamConfig, thumbnailTime, title, }: { streamConfig: NormalizedStreamConfig; thumbnailTime?: number; title: string; }) => Promise; export declare const deleteStreamVideo: ({ streamConfig, videoId, }: { streamConfig: NormalizedStreamConfig; videoId: string; }) => Promise; export declare const uploadStreamVideo: ({ buffer, streamConfig, videoId, }: { buffer: Buffer; streamConfig: NormalizedStreamConfig; videoId: string; }) => Promise; export declare const getStreamVideoResolutions: ({ streamConfig, videoId, }: { streamConfig: NormalizedStreamConfig; videoId: string; }) => Promise;