import React, { PropsWithChildren } from 'react'; export type CardCollapseProps = { title: string; icon?: React.ReactNode; defaultOpened?: boolean; className?: string; id?: string; haveCollapse?: boolean; as?: string; }; export declare function CardCollapse({ children, title, icon, defaultOpened, haveCollapse, id, className, as, }: PropsWithChildren): React.JSX.Element;