import { cancel, decideGate, events, get, getReviewCapability, list, refreshReviewCapability, submit, topup } from './client'; import { watch } from './watch'; /** * Registered first-party product surfaces only, with * one exact Drafted exception for delegated review/decision routes. Other * generated-app origins remain blocked; server-side callers are unaffected. */ export declare const builds: { submit: typeof submit; get: typeof get; getReviewCapability: typeof getReviewCapability; events: typeof events; cancel: typeof cancel; decideGate: typeof decideGate; refreshReviewCapability: typeof refreshReviewCapability; topup: typeof topup; list: typeof list; watch: typeof watch; }; export { BuildsApiError } from './client'; export type { BuildGateDecisionOptions, BuildDelegatedReviewCapabilityOptions, BuildReviewCapabilityRefreshOptions, BuildSubmitOptions, BuildTopupOptions, } from './client'; export type { BuildRunWatchHandle, BuildRunWatchOptions, BuildRunWatchUpdate, } from './watch'; export * from './types';