import { ElementChildren, WrapperElement } from "../../typings"; import React from "react"; import { RecursivePartial } from "../../typings/helper"; export type WrapperProps = RecursivePartial & { idx?: string | null; children?: ElementChildren | WrapperElement["children"]; data?: WrapperElement["data"]; }; export declare function Wrapper(props: WrapperProps): React.JSX.Element;