import type { NodeSpec } from '@atlaskit/editor-prosemirror/model';
/**
 * @name hardBreak_node
 */
export interface HardBreakDefinition {
    attrs?: {
        text?: '\n';
    };
    type: 'hardBreak';
}
export declare const hardBreak: NodeSpec;
