import React from "react";
import { Theme } from "@material-ui/core";
declare type EditableProps = {
    children: React.ReactNode;
    editableStyle?: Function;
    onClickPencil: (event: React.MouseEvent<HTMLSpanElement, MouseEvent>) => void;
    theme?: Theme;
};
declare const _default: ({ theme, editableStyle, children, onClickPencil, }: EditableProps) => JSX.Element;
export default _default;
