import * as React from "react"; interface ConfigurationMapRowProps { children: React.ReactNode; /** * If the style for the action is applied on hover */ onlyShowActionOnHover?: boolean; /** * Allows custom styling */ className?: string; /** * Human-readable selector used for writing tests */ "data-cy"?: string; } declare const ConfigurationMapRow: ({ children, onlyShowActionOnHover, className, "data-cy": dataCy }: ConfigurationMapRowProps) => React.JSX.Element; export default ConfigurationMapRow;