import { CreateOrderDto, LookupOrderDto, SubmitProofDto } from './dto';
import { OrdersService } from './orders.service';
export declare class OrdersController {
    private readonly orders;
    constructor(orders: OrdersService);
    create(dto: CreateOrderDto): Promise<{
        items: {
            productId: string | null;
            quantity: number;
            id: string;
            orderId: string;
            nameSnapshot: string;
            pricePaisa: number;
            imageSnapshot: string | null;
        }[];
    } & {
        number: string;
        method: import(".prisma/client").$Enums.PaymentMethod;
        customerNote: string | null;
        id: string;
        customerId: string | null;
        addressId: string | null;
        status: import(".prisma/client").$Enums.OrderStatus;
        paymentStatus: import(".prisma/client").$Enums.PaymentStatus;
        subtotalPaisa: number;
        deliveryPaisa: number;
        discountPaisa: number;
        totalPaisa: number;
        internalNote: string | null;
        trackingCode: string | null;
        courier: string | null;
        placedAt: Date | null;
        confirmedAt: Date | null;
        shippedAt: Date | null;
        deliveredAt: Date | null;
        createdAt: Date;
        updatedAt: Date;
    }>;
    lookup(q: LookupOrderDto): Promise<{
        statusLabel: string;
        items: {
            productId: string | null;
            quantity: number;
            id: string;
            orderId: string;
            nameSnapshot: string;
            pricePaisa: number;
            imageSnapshot: string | null;
        }[];
        address: {
            fullName: string;
            phone: string;
            email: string | null;
            city: string;
            area: string;
            street: string;
            landmark: string | null;
            postalCode: string | null;
            id: string;
            customerId: string | null;
            createdAt: Date;
        } | null;
        number: string;
        method: import(".prisma/client").$Enums.PaymentMethod;
        customerNote: string | null;
        id: string;
        customerId: string | null;
        addressId: string | null;
        status: import(".prisma/client").$Enums.OrderStatus;
        paymentStatus: import(".prisma/client").$Enums.PaymentStatus;
        subtotalPaisa: number;
        deliveryPaisa: number;
        discountPaisa: number;
        totalPaisa: number;
        internalNote: string | null;
        trackingCode: string | null;
        courier: string | null;
        placedAt: Date | null;
        confirmedAt: Date | null;
        shippedAt: Date | null;
        deliveredAt: Date | null;
        createdAt: Date;
        updatedAt: Date;
    }>;
    proof(number: string, dto: SubmitProofDto): Promise<{
        received: boolean;
    }>;
}
