import * as React from 'react'; export declare type TypeViewModel = typeof ViewModel; export declare type TypeView = React.StatelessComponent<{ vm: ViewModel; className?: string | string[]; }>; export declare type TypeContent = React.StatelessComponent; export declare abstract class ViewModel { protected abstract readonly view: TypeView; render(className?: string | string[]): JSX.Element; } export declare const PureJSONContent: (values: any, x?: any) => JSX.Element; export declare const JSONContent: (values: any, x?: any) => JSX.Element; export declare const RowContent: (values: any) => JSX.Element;