import { ComponentProps } from 'react'; import CategoryPreferences from './CategoryPreferences.js'; export type PreferencesCategoriesProps = { channels?: Array; categories?: Array; onChange?: ComponentProps['onChange']; }; export default function PreferencesCategories({ channels: selectedChannels, categories: selectedCategories, onChange, }: PreferencesCategoriesProps): import("@emotion/react/jsx-runtime").JSX.Element;