import React from 'react'; interface Props { value?: string; onChange: (value: string) => void; className?: string; } /** * CollectionList component that renders a list of collections. * @param props - The component props. * @param props.className - The component class name. * @param props.value - The selected collection. * @param props.onChange - The function to call when the collection changes. * @returns The rendered collection list component. */ declare const CollectionList: React.FC; export default CollectionList;