/*! * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0 */ import { DomBuilderObject, ExtendedHTMLElement } from '../helper/dom'; interface CollapsibleContentProps { title: string | ExtendedHTMLElement | HTMLElement | DomBuilderObject; testId?: string; children: Array; classNames?: string[]; initialCollapsedState?: boolean; onCollapseStateChange?: (collapsed: boolean) => void; } export declare class CollapsibleContent { render: ExtendedHTMLElement; private readonly props; private readonly uid; private icon; constructor(props: CollapsibleContentProps); } export {};