import { Shop } from "../repository/shop-repository"; export declare interface ConnectionInterface { create(values: Shop): Promise, get(shopId: string): Promise delete(shopId: string): Promise, update(values: Shop): Promise }