/**
 * Converts plain text to Atlassian Document Format (ADF)
 */
import { AdfDocument } from './adf-types.util.js';
/**
 * Convert plain text to ADF
 *
 * @param text - Plain text to convert to ADF
 * @returns ADF document
 */
export declare function textToAdf(text: string): AdfDocument;
