import * as z from "zod/v4"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; /** * Concrete model targeted by this tilde-latest alias, when applicable */ export type ModelAliasTarget = { /** * Human-readable name of the concrete model targeted by this alias */ name: string; /** * Routable model ID of the concrete target, matching that model row's id */ slug: string; }; /** @internal */ export declare const ModelAliasTarget$inboundSchema: z.ZodType; export declare function modelAliasTargetFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=modelaliastarget.d.ts.map