import type { AccordionProps } from './accordion-types.js'; /** * The `Accordion` component can be used to group information, reveal and hide content. * @public */ export declare const Accordion: ((props: AccordionProps & import("react").RefAttributes) => import("react").ReactElement | null) & { Section: (props: import("./AccordionSection.js").AccordionSectionProps) => import("react").ReactElement | null; SectionLabel: (props: import("../../index.js").WithChildren & import("../../index.js").StylingProps & import("../../index.js").DataTestId & import("react").RefAttributes) => import("react").ReactElement | null; SectionContent: (props: import("../../index.js").WithChildren & import("../../index.js").StylingProps & import("../../index.js").DataTestId & import("react").RefAttributes) => import("react").ReactElement | null; };