import React from 'react'; declare type Props = { textBlocks: { type?: string; id?: string; heading?: string; content: string; }[]; whiteBg?: boolean; }; declare const ExpandableTextContainer: React.FC; export default ExpandableTextContainer;