/// <reference types="react" />
import { PureComponent } from 'react';
export declare type SubSupType = 'sub' | 'sup';
export interface Props {
    type: SubSupType;
}
export default class SubSup extends PureComponent<Props, {}> {
    render(): JSX.Element;
}
