import { AOperation } from './AOperation.js'; import CheckoutSession from '../models/CheckoutSession.js'; export declare class CheckoutSessionOperation extends AOperation { protected service: string; constructor({ applicationKey, accessKey, secretKey, language, timeout, }: { applicationKey: string; accessKey: string; secretKey: string; language?: string; timeout?: number; }); create(data: Record): Promise; retrieve(id: string): Promise; expire(id: string): Promise; delete(id: string): Promise; } //# sourceMappingURL=CheckoutSessionOperation.d.ts.map