import * as React from "react"; interface ConfigurationMapRowProps { children: React.ReactNode; onlyShowActionOnHover?: boolean; dataCy?: string; } declare const ConfigurationMapRow: (props: ConfigurationMapRowProps) => JSX.Element; export default ConfigurationMapRow;