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