import { FC } from 'react'; import { IMedia, ISettings } from '../../../types'; interface ModalProps { post: IMedia; settings: ISettings; totalPosts: number; onClose: () => void; onPostChange: (post: IMedia | null) => void; classPrefix: string; } declare const ShopThisLookModal: FC; export default ShopThisLookModal;