import { APIResource } from "../../core/resource.mjs"; import * as CheckTransfersAPI from "../check-transfers.mjs"; import { APIPromise } from "../../core/api-promise.mjs"; import { RequestOptions } from "../../internal/request-options.mjs"; export declare class CheckTransfers extends APIResource { /** * Simulates the mailing of a [Check Transfer](#check-transfers), which happens * periodically throughout the day in production but can be sped up in sandbox. * This transfer must first have a `status` of `pending_approval` or * `pending_submission`. * * @example * ```ts * const checkTransfer = * await client.simulations.checkTransfers.mail( * 'check_transfer_30b43acfu9vw8fyc4f5', * ); * ``` */ mail(checkTransferID: string, options?: RequestOptions): APIPromise; } //# sourceMappingURL=check-transfers.d.mts.map