import React from 'react'; import { Hospital } from "../../../../../care/interfaces/types"; import { Specialty } from "../../../types"; export type Props = { careSpecialties: Specialty[]; spotlights: Hospital[]; onClose?: () => void; isOpen?: boolean; }; declare const MenuCareList: ({ careSpecialties, isOpen, onClose, spotlights, }: Props) => React.JSX.Element; export { MenuCareList };