import { Foldout as Component } from './Foldout'; export declare const Foldout: { readonly name: "Foldout"; readonly purpose: "A collapsible panel: a titled header that expands on click to reveal flexible content (text, tables, charts, or any nested component). Collapsed by default; stack multiple for a group."; readonly example: "\nAny content — text, a table, a chart, or any nested component.\n"; readonly body: "htmdx"; readonly props: readonly [{ readonly name: "title"; readonly type: "string"; readonly description: "The header text shown in the summary row. Supports inline markdown."; }, { readonly name: "open"; readonly type: "boolean"; readonly default: false; readonly description: "Render the panel expanded on load. Defaults to collapsed."; }]; readonly Component: typeof Component; };