import type { BackendIR } from "../../ir/domain/backend.js"; import type { BackendTargetIR } from "../../ir/target/backend.js"; export type BackendTargetPoliciesInput = { backend?: unknown; } | { [key: string]: unknown; }; export declare function backendDomainToTarget(ir: BackendIR, policies?: BackendTargetPoliciesInput): BackendTargetIR;