import { Local } from ".."; import { BusinessType } from "./BusinessType"; export declare class BusinessTypeProduct { id: number; business_type: BusinessType | null; name: string; photo: string | null; status: number; business_type_products: Local[]; }