import type { CypressRunResult } from "../../../types/cypress";
import type { Logger } from "../../../util/logging";
import type { Computable } from "../../command";
import { Command } from "../../command";
export declare class ExtractVideoFilesCommand extends Command<string[], null> {
    private readonly cypressRunResult;
    constructor(logger: Logger, cypressRunResult: Computable<CypressRunResult>);
    protected computeResult(): Promise<string[]>;
}
