/**
 * Checks for `manifest` and `params` flags to be present.
 */
export declare const parseIfCsvArgs: () => Promise<{
    manifest: string;
    output: string | undefined;
    params: string;
} | {
    output: string | undefined;
    params: string;
    manifest?: undefined;
}>;
