import type { ColumnConfig } from "./index.js"; /** * Format data as styled plain text with labeled fields. * Each record is displayed as multi-line with icons, colors, and proper formatting. * Records are separated by a styled divider. * * Features: * - Prominent fields (title/URL) displayed without labels, bold/cyan * - Emoji icons for regular field types * - Bold field labels * - Dimmed placeholder for empty values * - Proper indentation for multiline content * - Newlines around separators for visual breathing room */ export declare function formatPlain(data: T, columns: ColumnConfig[]): string; //# sourceMappingURL=plain.d.ts.map