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