import type { NodeSpec } from '@atlaskit/editor-prosemirror/model';
/**
 * @name placeholder_node
 */
export interface PlaceholderDefinition {
    attrs: {
        localId?: string;
        text: string;
    };
    type: 'placeholder';
}
export declare const placeholder: NodeSpec;
export declare const placeholderWithLocalId: NodeSpec;
