import * as React from "react"; interface ConfigurationMapValueProps { children: React.ReactNode; dataCy?: string; } declare const ConfigurationMapValue: ({ children, dataCy }: ConfigurationMapValueProps) => JSX.Element; export default ConfigurationMapValue;