import * as React from "react"; interface ConfigurationMapValueProps { children: React.ReactNode; /** * Human-readable selector used for writing tests */ "data-cy"?: string; /** * Allows custom styling */ className?: string; } declare const ConfigurationMapValue: ({ children, className, "data-cy": dataCy }: ConfigurationMapValueProps) => React.JSX.Element; export default ConfigurationMapValue;