import type { ParsedSpecs } from '../common/types';
/**
 * Write file with contents (file path predefined)
 * @param config - plugin config options
 * @param parentFolder - folder relatively to which test ran in prefilter mode
 * @param filteredSpecsFile - path to file (set in plugins)
 */
export declare const taskWrite: (config: Cypress.PluginConfigOptions, parentFolder: string, filteredSpecsFile: string) => {
    writeTempFileWithSelectedTests: (contents: ParsedSpecs) => null;
};
