import { AlienCore } from "../core.js"; import { RequestOptions } from "../lib/sdks.js"; import { AlienError } from "../models/errors/alienerror.js"; import { ConnectionError, InvalidRequestError, RequestAbortedError, RequestTimeoutError, UnexpectedClientError } from "../models/errors/httpclienterrors.js"; import * as errors from "../models/errors/index.js"; import { ResponseValidationError } from "../models/errors/responsevalidationerror.js"; import { SDKValidationError } from "../models/errors/sdkvalidationerror.js"; import * as models from "../models/index.js"; import { APIPromise } from "../types/async.js"; import { Result } from "../types/fp.js"; /** * List full deployment records for manager operational loops. This endpoint is intentionally separate from the public deployments list, which returns lightweight UI rows. */ export declare function syncList(client: AlienCore, request?: models.SyncListRequest | undefined, options?: RequestOptions): APIPromise>; //# sourceMappingURL=syncList.d.ts.map