import { ShippoCore } 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 { ResponseValidationError } from "../models/errors/responsevalidationerror.js"; import { SDKValidationError } from "../models/errors/sdkvalidationerror.js"; import { ShippoError } from "../models/errors/shippoerror.js"; import { APIPromise } from "../types/async.js"; import { Result } from "../types/fp.js"; /** * Create a new user parcel template * * @remarks * Creates a new user parcel template.
You can choose to create a * parcel template using a preset carrier template as a starting point, or * you can create an entirely custom one. To use a preset carrier template, * pass in a unique template token from this list * plus the weight fields (**weight** and **weight_unit**). Otherwise, omit * the template field and pass the other fields, for the weight, length, height, * and depth, as well as their units." */ export declare function userParcelTemplatesCreate(client: ShippoCore, request: components.UserParcelTemplateCreateRequest, options?: RequestOptions): APIPromise>; //# sourceMappingURL=userParcelTemplatesCreate.d.ts.map