import { GetBlockResponseWithMetadata } from '../../types';
export declare type RichTextItemResponse = Extract<GetBlockResponseWithMetadata, {
    type: 'paragraph';
}>['paragraph']['rich_text'][0];
export declare const flattenRichText: (richTextItemResponse: RichTextItemResponse[]) => string;
export declare const extractPlainTextFromBlock: (block: GetBlockResponseWithMetadata) => string;
