import { Schema } from 'prosemirror-model'; import { Plugin } from 'prosemirror-state'; export interface InputRulesOptions { /** Include the autocorrect/typography rules. Defaults to true. */ textTransform?: boolean; } /** * Markdown-style typing shortcuts: block rules plus inline mark rules * (**bold**, *italic*, `code`, ~~strike~~), and (unless disabled) the * typography autocorrect rules. */ export declare function buildInputRules(schema: Schema, options?: InputRulesOptions): Plugin;