import { CustomElement, BaseElement } from './slateConverters'; export interface ThinkElement extends BaseElement { type: 'think'; } export declare function deserializeMarkdown(markdown: string): CustomElement[];