/** * Shared helpers for the deploy sub-domain tool registrations. * * The deploy surface is split into sibling files by sub-domain * (organization / project / environment / deployment / source-control); * each calls one of the helpers here so pagination, array coercion, and * the Deploy API options shape stay identical across every tool. */ import type { DeployApiClientOptions } from "../../../deploy/api/index.js"; export declare const paginate: (values: readonly T[], limit: number, cursor?: string) => { items: T[]; nextCursor?: string; }; export declare const asArray: (value: unknown) => T[]; export declare const apiOptionsFromContext: (token: string) => DeployApiClientOptions;