/** * `scai provision deploy site bind` runner — the CLI wrapper around * `createSiteBinding` (the reusable, CLI-free core in `../site-binding`, also * exported from `@sitecoreai-labs/sitecoreai-cli/deploy` for SDK consumers). * * Resolves the environment + builds an Authoring client, runs the bind, and * prints the result. The bind logic (SXA Site Grouping fields, idempotency, * the RenderingHost string-key semantics) lives in `../site-binding`. */ import type { DeploySiteBindOptions } from "./types.js"; export declare const runDeploySiteBind: (options: DeploySiteBindOptions) => Promise;