import { RootRenderProps } from 'amis/lib/Root';
import { RenderOptions } from 'amis/lib/factory';
import { LibSchema } from "./types";
declare type Option = {
    schema: LibSchema;
    option?: RenderOptions;
    props?: RootRenderProps;
    [prop: string]: any;
};
declare const _default: (option: Option) => JSX.Element;
export default _default;
