/// import { ComponentInterface, EventEmitter } from '../../stencil-public-runtime'; import { JSX } from '../../components'; export declare class Q2Section implements ComponentInterface { label: string; collapsible: boolean; noCollapseIcon: boolean; expanded: boolean; hostElement: HTMLElement; contentHeight: string; hasYieldedHeader: boolean; guid: number; animating: boolean; titleId: string; contentId: string; loc(key: string, subs?: string[]): string; resizeIframe(): void; resizerFn: NodeJS.Timer | undefined; headerSlotMutationObserver: MutationObserver; contentSlotMutationObserver: MutationObserver; get contentElement(): HTMLDivElement; componentDidLoad(): void; componentDidUnload(): void; get wrapperClasses(): string; get btnAriaLabel(): string; get slottedContentHeight(): string; get contentWrapper(): HTMLDivElement | null; get contentContainer(): HTMLDivElement | null; get headerSlotWrapper(): HTMLDivElement | null; defaultChangeHandler(event: CustomEvent): void; expandedObserver(): void; collapsibleObserver(): void; change: EventEmitter; onHeaderClick: () => void; setContentWrapperHeight(height: string): void; onAnimationStart: () => void; onAnimationEnd: () => void; endAnimation: () => void; onHeaderSlotChange: () => void; render(): JSX.IntrinsicElements; }