import type { TODO_any } from '../../utils/organization/TODO_any';
import type { FormatParser } from '../_common/FormatParser';
import type { CsvSettings } from './CsvSettings';
/**
 * Definition for CSV spreadsheet
 *
 * @public exported from `@promptbook/core`
 *                          <- TODO: [🏢] Export from package `@promptbook/csv`
 */
export declare const CsvFormatParser: FormatParser<string, string, CsvSettings, TODO_any>;
/**
 * TODO: [🍓] In `CsvFormatParser` implement simple `isValid`
 * TODO: [🍓] In `CsvFormatParser` implement partial `canBeValid`
 * TODO: [🍓] In `CsvFormatParser` implement `heal
 * TODO: [🍓] In `CsvFormatParser` implement `subvalueParsers`
 * TODO: [🏢] Allow to expect something inside CSV objects and other formats
 */
