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