import { ClientSDK, RequestOptions } from "../lib/sdks.js"; import * as components from "../models/components/index.js"; export declare class Manifests extends ClientSDK { /** * List all manifests * * @remarks * Returns a list of all manifest objects. */ list(page?: number | undefined, results?: number | undefined, options?: RequestOptions): Promise; /** * Create a new manifest * * @remarks * Creates a new manifest object. */ create(request: components.ManifestCreateRequest, options?: RequestOptions): Promise; /** * Retrieve a manifest * * @remarks * Returns an existing manifest using an object ID. */ get(manifestId: string, options?: RequestOptions): Promise; } //# sourceMappingURL=manifests.d.ts.map