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