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 * as operations from "../models/operations/index.js";
import { APIPromise } from "../types/async.js";
import { Result } from "../types/fp.js";
/**
* List all shipments
*
* @remarks
* Returns a list of all shipment objects.
* In order to filter results, you must use the below path parameters.
* A maximum date range of 90 days is permitted.
* Provided dates should be ISO 8601 UTC dates (timezone offsets are currently not supported).
*
* Optional path parameters:
* `object_created_gt`- object(s) created greater than a provided date time
* `object_created_gte` - object(s) created greater than or equal to a provided date time
* `object_created_lt` - object(s) created less than a provided date time
* `object_created_lte` - object(s) created less than or equal to a provided date time
*
* Date format examples:
* `2017-01-01`
* `2017-01-01T03:30:30` or `2017-01-01T03:30:30.5`
* `2017-01-01T03:30:30Z`
*
* Example URL:
* `https://api.goshippo.com/shipments/?object_created_gte=2017-01-01T00:00:30&object_created_lt=2017-04-01T00:00:30`
*/
export declare function shipmentsList(client: ShippoCore, request: operations.ListShipmentsRequest, options?: RequestOptions): APIPromise>;
//# sourceMappingURL=shipmentsList.d.ts.map