import { ClientSDK, RequestOptions } from "../lib/sdks.js"; import * as components from "../models/components/index.js"; export declare class CheckoutSessions extends ClientSDK { /** * Create checkout session * * @remarks * Create a new checkout session. */ create(checkoutSessionCreate?: components.CheckoutSessionCreate | undefined, merchantAccountId?: string | null | undefined, options?: RequestOptions): Promise; /** * Update checkout session * * @remarks * Update the information stored on a checkout session. */ update(checkoutSessionCreate: components.CheckoutSessionCreate, sessionId: string, merchantAccountId?: string | null | undefined, options?: RequestOptions): Promise; /** * Get checkout session * * @remarks * Retrieve the information stored on a checkout session. */ get(sessionId: string, merchantAccountId?: string | null | undefined, options?: RequestOptions): Promise; /** * Delete checkout session * * @remarks * Delete a checkout session and all of its (PCI) data. */ delete(sessionId: string, merchantAccountId?: string | null | undefined, options?: RequestOptions): Promise; } //# sourceMappingURL=checkoutsessions.d.ts.map