import * as React from "react"; interface ConfigurationMapRowActionProps { /** * What to render as the action content */ children: React.ReactNode; /** * Click handler for the action */ onClick: (event?: React.SyntheticEvent) => void; } export declare const rowActionStaticClassname = "static_configurationMapRowAction"; declare const ConfigurationMapRowAction: (props: ConfigurationMapRowActionProps) => React.JSX.Element; export default ConfigurationMapRowAction;