import type { PaymentStatusInput, StartPaymentRequest, VerifyPaymentInput } from "../types/payment"; export declare const useStartPay: () => { startPayment: (input: StartPaymentRequest) => Promise; verifyPayment: (input: VerifyPaymentInput) => Promise; getPaymentStatus: (input: PaymentStatusInput) => Promise; cancelPayment: (input: PaymentStatusInput) => Promise; on: (event: T, handler: import("..").StartPayEventHandler) => () => void; off: (event: T, handler: import("..").StartPayEventHandler) => void; loading: boolean; }; //# sourceMappingURL=useStartPay.d.ts.map