import type { Mark, Node, Schema } from '@atlaskit/editor-prosemirror/model';
import type { StatusType } from '../types';
export declare const DEFAULT_STATUS: StatusType;
export declare const DEFAULT_STATUS_NEW: StatusType;
export declare const getDefaultStatusAttrs: () => StatusType;
export declare const createStatusNode: (schema: Schema, attrs?: Partial<StatusType>, marks?: readonly Mark[]) => Node;
