import { CartsService } from './carts.service';
export declare class CartsController {
    private readonly cartsService;
    constructor(cartsService: CartsService);
    syncCart(body: {
        cartId: string;
        email?: string;
        items: any[];
    }): Promise<any>;
    getCart(id: string): Promise<any>;
}
