import { NodeSpec } from '../../prosemirror';
/**
 * @name text_node
 */
export interface Definition {
    type: 'text';
    /**
     * @minLength 1
     */
    text: string;
    marks?: object;
}
export declare const text: NodeSpec;
