import type { InvoiceGetClient } from './types';
import type { InvoiceResponse } from '../../../clients/invoice/commonTypes';
/**
 * Retrieve a subscription invoice (authorized payment) by ID.
 *
 * @returns The invoice details including status, amount, and payer information.
 */
export default function get({ id, config }: InvoiceGetClient): Promise<InvoiceResponse>;
