import type { AnnotationMarkDefinition } from '../marks/annotation';
import type { NodeSpec } from '@atlaskit/editor-prosemirror/model';
/**
 * @name date_node
 */
export interface DateDefinition {
    attrs: {
        localId?: string;
        /**
         // eslint-disable-next-line eslint-plugin-jsdoc/check-tag-names
         * @minLength 1
         */
        timestamp: string;
    };
    /**
     // eslint-disable-next-line eslint-plugin-jsdoc/check-tag-names
     * @stage 0
     */
    marks?: Array<AnnotationMarkDefinition>;
    type: 'date';
}
export declare const date: NodeSpec;
export declare const dateWithLocalId: NodeSpec;
