import * as React from "react"; interface ConfigurationMapValueWithDefaultProps { /** * The value to display */ value?: React.ReactNode; } declare const ConfigurationMapValueWithDefault: (props: ConfigurationMapValueWithDefaultProps) => JSX.Element; export default ConfigurationMapValueWithDefault;