import { FC, ReactNode } from 'react'; import { Category } from '../PackageCategoryTab'; export interface CategoryModalProps { isOpen?: boolean; isLoading?: boolean; error?: string; children?: ReactNode; actions?: ReactNode; title?: string; selectedCategory: Category; onRequestClose: () => void; handleSelect: (slug: string) => void; Translations?: { showAll: string; showServices: string; title: string; }; } declare const CategoryModal: FC; export default CategoryModal;