export interface CollapsibleProps {
  title: string;
  text?: string;
  initialCollapsed?: boolean;
  children?: React.ReactNode;
}
