import * as React from 'react'; import { ISettings, IMedia } from '../../../types'; interface ListProps { settings: ISettings; classPrefix: string; onClose: () => void; post: IMedia; totalPosts: number; onPostChange: (post: IMedia | null) => void; /** When true, renders inline (position: relative, full-height) instead of fixed/animated. Used by DesktopPlayer. */ inline?: boolean; } export interface ShopThisLookProductListHandle { close: () => void; } declare const ShopThisLookProductList: React.ForwardRefExoticComponent>; export default ShopThisLookProductList;