import React, { FunctionComponent } from 'react'; interface CreateProductProps { space: any; trigger: React.ReactNode; handleLinkProduct: () => void; handleCreateProduct: (productType: any) => void; } declare const CreateProduct: FunctionComponent; export default CreateProduct;