import React from "react";
declare type ImageEditableProps = {
    children: React.ReactNode;
    editableStyle: Function;
    removeImage: Function;
    uploadNewImage: Function;
};
declare const ImageEditable: ({ uploadNewImage, removeImage, editableStyle, children, }: ImageEditableProps) => JSX.Element;
export default ImageEditable;
