import { ISourceModel } from "./ISourceModel.js";
import { ITransformationModel } from "./ITransformationModel.js";
export interface IVideoSourceModel extends ISourceModel {
    sourceType: "video";
    publicId: string;
    transformation?: ITransformationModel;
}
