import { Inline } from './types/inline-content';
/**
 * @name taskItem_node
 */
export interface TaskItemDefinition {
    type: 'taskItem';
    /**
     * @allowUnsupportedInline true
     */
    content?: Array<Inline>;
    attrs: {
        localId: string;
        state: 'TODO' | 'DONE';
    };
}
export declare const taskItem: import("prosemirror-model").NodeSpec;
