import * as z from "zod/v4-mini"; export type SignSourceMapFile = { path: string; sizeBytes: number; hasSourcesContent: boolean; hasNames: boolean; hasFile: boolean; mappingsPresent: boolean; }; /** @internal */ export type SignSourceMapFile$Outbound = { path: string; sizeBytes: number; hasSourcesContent: boolean; hasNames: boolean; hasFile: boolean; mappingsPresent: boolean; }; /** @internal */ export declare const SignSourceMapFile$outboundSchema: z.ZodMiniType; export declare function signSourceMapFileToJSON(signSourceMapFile: SignSourceMapFile): string;