import { MarkExtension } from "../../MarkExtension";
export default class Italic extends MarkExtension {
    priority: number;
    get name(): string;
    get schema(): any;
    keys({ type }: {
        type: any;
    }): {
        "Mod-i": any;
    };
    commands({ type }: {
        type: any;
    }): () => any;
    inputRules({ type }: {
        type: any;
    }): any[];
    pasteRules({ type }: {
        type: any;
    }): any[];
}
