declare class CheckoutInfo { name: string | null; phone: number | null; deliveryDate: Date | null; constructor(name: string | null, phone: number | null, deliveryDate: Date | null); } export { CheckoutInfo };