import { type DataTestId, type StylingProps, type WithChildren } from '@dynatrace/strato-components/core'; /** @public */ export type AccordionSectionLabelProps = WithChildren & StylingProps & DataTestId; /** * Accordion Section Label component * @public */ export declare const AccordionSectionLabel: (props: WithChildren & StylingProps & DataTestId & import("react").RefAttributes) => React.ReactElement | null;