import { SMARTLINK_BASE_URL } from "./constants";

export type Environment = keyof typeof SMARTLINK_BASE_URL;

export interface PrePaymentMethodResponse {
  success: boolean;
  payment_id: string;
}

export type PrePaymentMethod = (
  quoteId: string
) => Promise<PrePaymentMethodResponse>;
