import { DataTestId } from '../../core/types/data-props.js'; import { StylingProps } from '../../core/types/styling-props.js'; import { WithChildren } from '../../core/types/with-children.js'; /** @public */ export type AccordionSectionLabelProps = WithChildren & StylingProps & DataTestId; /** * Accordion Section Label component * @public */ export declare const AccordionSectionLabel: (props: WithChildren & StylingProps & DataTestId & import("react").RefAttributes) => import("react").ReactElement | null;