import * as React from 'react'; export interface AccordionProps extends React.HTMLAttributes { /** aria-label */ ariaLabel?: string; /** Custom styling */ className?: string; /** Wraps the text in a heading-tag. Ie. headingLevel = 1 produces \

{toggleButtonText}\

.*/ headingLevel?: number; /** List style with numbers or icons */ processList?: boolean; stepId?: string; children?: React.ReactNode; } /** * @deprecated Accordion er erstattet av Accordion fra "@skatteetaten/ds-collections" * visibleName Accordion (Trekkspill) */ export declare const Accordion: React.FC;