import { IGeoCoordinates } from "./interface";
import { PaymentMethodType, ValidateType, VariantType } from "../constants";
export interface IOrderInterface {
    customerInfo: string;
    variantId: VariantType;
    userNotes: string | null;
    accountId: number | null;
    paymentMethod: PaymentMethodType | null;
    validate: ValidateType;
    geoCoordinates?: IGeoCoordinates | null;
}
