import { CsvOptions } from '../types/csv';
/**
 * Gets the manifest data if `outputs` is present in it.
 */
export declare const getManifestData: (manifest: string) => Promise<any>;
/**
 * Generates a CSV file based on the provided tree structure, context, output path, and params.
 */
export declare const generateCsv: (options: CsvOptions) => Promise<string | void>;
