import { FC } from 'react'; interface MultiselectPageProps { name: string; pages: any[]; pageType: string; pageContainerType: string; isMobile?: boolean; todoOptionKey: string; onChange: (date: any) => void; value: any; } declare const MultiselectPage: FC; export default MultiselectPage;