import type { MarkSpec, Mark } from '@atlaskit/editor-prosemirror/model';
export interface SubSupAttributes {
    type: 'sub' | 'sup';
}
/**
 * @name subsup_mark
 */
export interface SubSupDefinition {
    attrs: SubSupAttributes;
    type: 'subsup';
}
export interface SubSupMark extends Mark {
    attrs: SubSupAttributes;
}
export declare const subsup: MarkSpec;
