import React from 'react'; import { Product } from '../../../../types/entities.types'; interface Props { productsUsedInVideo?: Product[]; onChange?: Function; imagesToInject?: any; setShouldOpenSearchProductPopup: (shouldClosePopup: boolean) => void; setVideoProducts?: (newProduct: any) => void; videoProducts?: Product[]; selectProductHandle: (newProduct: Product) => void; } export declare const EditorSearchProducts: React.FC; export {};