UNPKG

mod-arch-shared

Version:

Shared UI components and utilities for modular architecture micro-frontend projects

14 lines 507 B
import * as React from 'react'; import { ContentVariants } from '@patternfly/react-core'; interface CollapsibleSectionProps { open?: boolean; setOpen?: (update: boolean) => void; title: string; titleVariant?: ContentVariants.h1 | ContentVariants.h2; children?: React.ReactNode; id?: string; showChildrenWhenClosed?: boolean; } declare const CollapsibleSection: React.FC<CollapsibleSectionProps>; export default CollapsibleSection; //# sourceMappingURL=CollapsibleSection.d.ts.map