import type { ParseConfig, UnparseConfig } from 'papaparse';
/**
 * Settings and configuration options for CSV format handling within the application.
 */
export type CsvSettings = Pick<ParseConfig & UnparseConfig, 'delimiter' | 'quoteChar' | 'newline' | 'skipEmptyLines'>;
/**
 * Contains configuration options for parsing and generating CSV files, such as delimiters and quoting rules.
 *
 * @public exported from `@promptbook/core`
 */
export declare const MANDATORY_CSV_SETTINGS: Readonly<{
    readonly header: true;
}>;
