import * as React from "react"; export interface SidebarSectionProps { children: React.ReactNode | React.ReactNode[]; /** * Will appear in the header of the sidebar section */ label?: React.ReactElement | string; /** * Allows custom styling */ className?: string; /** * Human-readable selector used for writing tests */ "data-cy"?: string; } declare const SidebarSection: ({ label, children, className, "data-cy": dataCy }: SidebarSectionProps) => React.JSX.Element; export default SidebarSection;