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