///
import { ObjectSchema, ValueOf } from '../../lib/schema';
import { CSSProperties } from 'styled-components';
import './page';
import './text';
import './enum';
import './image';
interface PageInterface {
schema: ObjectSchema;
value: ValueOf;
keys?: string[];
className?: string;
style?: CSSProperties;
columns?: number;
[x: string]: any;
}
export declare const PageView: (props: PageInterface) => JSX.Element;
export {};