import { MercadoPago } from "."; export interface Constructable { new (key: string, options?: { locale: string; advancedFraudPrevention?: boolean; }): T; } declare global { interface Window { MercadoPago: Constructable; } } export declare type FetchError = { code: number; message: string; };