import type { NodeSpec } from '@atlaskit/editor-prosemirror/model';
/**
 * @name text_node
 */
export interface TextDefinition {
    marks?: Array<any>;
    /**
     // eslint-disable-next-line eslint-plugin-jsdoc/check-tag-names
     * @minLength 1
     */
    text: string;
    type: 'text';
}
export declare const text: NodeSpec;
