import React, { PropsWithChildren } from 'react'; export default function SourceDropdownContainer({ children, isCollapsed, onExpand, }: PropsWithChildren<{ isCollapsed: boolean; onExpand: () => void; }>): React.JSX.Element;