import React from "react"; export declare type TemplateGalleryModalProps = { open: boolean; onClose?: () => void; onOk?: () => void; modalTitle?: string; loading?: boolean; okText?: string; image?: string | null; description?: string | null; price?: string | number | null; title?: string | null; }; export declare const TemplateGalleryModal: React.FC;