10 lines
422 B
TypeScript
10 lines
422 B
TypeScript
|
|
import { Config } from '../config/config';
|
||
|
|
import { CostBreakdown } from '../interfaces';
|
||
|
|
/**
|
||
|
|
* Estimate the cost of generating audio descriptions for a video
|
||
|
|
* @param videoFilePath - Path to the input video file
|
||
|
|
* @param options - Optional configuration overrides
|
||
|
|
* @returns Cost estimation breakdown
|
||
|
|
*/
|
||
|
|
export declare function estimateCost(videoFilePath: string, options?: Partial<Config>): Promise<CostBreakdown>;
|