import { MarkType, NodeType } from '@sse-editor/pm/model'; import { RawCommands } from '../types.js'; declare module '@sse-editor/core' { interface Commands { resetAttributes: { /** * Resets some node attributes to the default value. */ resetAttributes: (typeOrName: string | NodeType | MarkType, attributes: string | string[]) => ReturnType; }; } } export declare const resetAttributes: RawCommands['resetAttributes'];