import React from 'react';
import type { RendererProps } from 'jamis-core';
import type { PlainSchema } from './types';
interface PlainProps extends RendererProps, Omit<PlainSchema, 'type' | 'className'> {
    wrapperComponent?: any;
}
export declare class Plain extends React.Component<PlainProps, object> {
    static defaultProps: Partial<PlainProps>;
    render(): JSX.Element;
}
export declare class PlainRenderer extends Plain {
}
export {};
