import { NodeSpec } from '../../prosemirror';
import { Inline } from './doc';
/**
 * @name taskItem_node
 */
export interface Definition {
    type: 'taskItem';
    content: Array<Inline>;
    attrs: {
        localId: string;
        state: 'TODO' | 'DONE';
    };
}
export declare const taskItem: NodeSpec;
