import * as React from 'react'; export type AccordionAreaDeprecatedProps = { children: React.ReactNode; className?: string; /** * Whether the accordion is visually expanded to show its contents. */ expanded?: boolean; /** * Contents of the clickable header button. */ top: React.ReactNode; }; /** * @deprecated * This component is in the old visual identity and will be updated soon. * * Check the [Gamut Board](https://www.notion.so/codecademy/Gamut-Status-Timeline-dd3c135d3848464ea6eb1b48e68fbb1d) for component status */ export declare const AccordionAreaDeprecated: React.FC;