interface CloneElementProps { element: any; children?: any; childRef?: any; } /** * CloneElement is a wrapper component for createElement function. * This allows you to describe your cloning element declaratively * which is a more natural API for React. */ export declare function CloneElement({ children, element, childRef, ...rest }: CloneElementProps & Partial): any; export {};