import { IMerchantAddress } from "./i-merchant-address";
export interface IMerchant {
    keys: Array<{
        field: string;
        value: string;
    }>;
    deliveryAreas: any[];
    id: string;
    name: string;
    phones: string[];
    address: IMerchantAddress;
}
