import React from "react"; declare type CollapseContentProps = { contendId?: string; title: string; children: React.ReactNode; description?: React.ReactNode; open?: boolean; compact?: boolean; image?: string; beforeTitle?: React.ReactNode; onClick?: () => void; imageBackground?: string; id?: string; }; declare function CollapseContent(props: CollapseContentProps): JSX.Element; export default CollapseContent; //# sourceMappingURL=index.d.ts.map