import { BoltTypescriptSDKCore } from "../core.js"; import { RequestOptions } from "../lib/sdks.js"; import * as components from "../models/components/index.js"; import { ConnectionError, InvalidRequestError, RequestAbortedError, RequestTimeoutError, UnexpectedClientError } from "../models/errors/httpclienterrors.js"; import * as errors from "../models/errors/index.js"; import { SDKError } from "../models/errors/sdkerror.js"; import { SDKValidationError } from "../models/errors/sdkvalidationerror.js"; import * as operations from "../models/operations/index.js"; import { Result } from "../types/fp.js"; /** * Create an order that was prepared outside the Bolt ecosystem. * * @remarks * Create an order that was prepared outside the Bolt ecosystem. Some Bolt-powered flows automatically manage order creation - in those flows the order ID will be provided separately and not through this API. */ export declare function ordersOrdersCreate(client: BoltTypescriptSDKCore, security: operations.OrdersCreateSecurity, order: components.Order, xPublishableKey: string, xMerchantClientId?: string | undefined, options?: RequestOptions): Promise>; //# sourceMappingURL=ordersOrdersCreate.d.ts.map