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 filteredSpecs - path to file (set in plugins)
 */
export declare const taskWrite: (config: {
    env: {
        [key: string]: unknown;
    };
}, parentFolder: string, filteredSpecs: string) => {
    writeTempFileWithSelectedTests: (contents: ParsedSpecs) => null;
};
