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 & { /** * Overrides the accessible name of the accordion section. */ 'aria-label'?: string; }; /** * Accordion Section Label component * @public */ export declare const AccordionSectionLabel: (props: WithChildren & StylingProps & DataTestId & { /** * Overrides the accessible name of the accordion section. */ 'aria-label'?: string; } & import("react").RefAttributes) => import("react").ReactElement | null; //# sourceMappingURL=AccordionSectionLabel.d.ts.map