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