export interface DropupSectionProps { title: string; items: string[]; onSelect: (selection: string) => void; alwaysExpanded?: boolean; } export default function DropupSection({ title, items, onSelect, alwaysExpanded, }: DropupSectionProps): import("react/jsx-runtime").JSX.Element;