import { CreemCore } from "../core.js"; import { RequestOptions } from "../lib/sdks.js"; import * as components from "../models/components/index.js"; import { CreemError } from "../models/errors/creemerror.js"; import { ConnectionError, InvalidRequestError, RequestAbortedError, RequestTimeoutError, UnexpectedClientError } from "../models/errors/httpclienterrors.js"; import { ResponseValidationError } from "../models/errors/responsevalidationerror.js"; import { SDKValidationError } from "../models/errors/sdkvalidationerror.js"; import { APIPromise } from "../types/async.js"; import { Result } from "../types/fp.js"; /** * List all transactions * * @remarks * Search and retrieve payment transactions. Filter by customer, product, date range, and status. */ export declare function transactionsSearch(client: CreemCore, customerId?: string | undefined, orderId?: string | undefined, productId?: string | undefined, pageNumber?: number | undefined, pageSize?: number | undefined, options?: RequestOptions): APIPromise>; //# sourceMappingURL=transactionsSearch.d.ts.map