export type { BytedanceClient } from './createBytedanceClient';
export type { BytedanceProviderConfiguration } from './createVideoProvider';
export type SeedanceRatio = '16:9' | '4:3' | '1:1' | '3:4' | '9:16' | '21:9' | 'adaptive';
export type SeedanceResolution = '480p' | '720p' | '1080p';
export declare function getSeedanceDimensions(ratio: SeedanceRatio, resolution: SeedanceResolution, imageAspectRatio?: number): {
    width: number;
    height: number;
};
