export type { RunwareClient } from './createRunwareClient';
export type { RunwareProviderConfiguration } from './createVideoProvider';
export declare const VIDEO_ASPECT_RATIO_MAP: Record<string, {
    width: number;
    height: number;
}>;
export declare function getVideoDimensionsFromAspectRatio(aspectRatio: string): {
    width: number;
    height: number;
};
