declare type Options = "test" | "live" | "local"; declare type EsewaServiceType = { init(clientId: string, secret: string, environment: Options): void; makePayment(price: string, productName: string, productId: string, callbackUrl: string): void; }; declare const _default: EsewaServiceType; export default _default;