import { RendererProps, RenderOptions } from 'amis/lib/factory'; import { LibSchema } from "./types"; export declare type AmisProps = { schema: LibSchema; props?: Partial; option?: RenderOptions; }; export declare const Amis: (props: AmisProps) => JSX.Element;