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