import React from "react";
interface IGovernanceEditableValueWithTitle {
    title: string;
    value: string;
    topRightContent?: React.ReactNode;
    bottomRightContent?: React.ReactNode;
    onSave: (value: string) => void;
}
export declare const GovernanceEditableValueWithTitle: React.FC<IGovernanceEditableValueWithTitle>;
export {};
//# sourceMappingURL=GovernanceEditableValueWithTitle.d.ts.map