import { PureComponent } from 'react';
interface CloneElementProps {
    element: any | null;
}
/**
 * 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 class CloneElement<T = any> extends PureComponent<CloneElementProps & Partial<T>> {
    getProjectedProps: (this: any, props: any) => {};
    render(): {} | null | undefined;
}
export {};
