import type { PointCreatePaymentIntentClient } from './types'; import type { PaymentIntentResponse } from '../commonTypes'; /** * Create a payment intent on the specified Point device. * * @returns The newly created payment intent with its current state. */ export default function createPaymentIntent({ device_id, request, config }: PointCreatePaymentIntentClient): Promise;