export declare class RegisterSaleDto {
    phone: string;
    name?: string;
    email?: string;
    amount: number;
    notes?: string;
    applyCouponId?: string;
    customerLat?: number;
    customerLng?: number;
}
