import * as z from "zod/v4"; export type ImportedResource = { /** * Resource id from the active stack */ id: string; /** * Resource type identifier that determines the specific kind of resource. This field is used for polymorphic deserialization and resource-specific behavior. */ type: string; /** * Resolved typed import payload */ importData: { [k: string]: any | null; }; }; /** @internal */ export type ImportedResource$Outbound = { id: string; type: string; importData: { [k: string]: any | null; }; }; /** @internal */ export declare const ImportedResource$outboundSchema: z.ZodType; export declare function importedResourceToJSON(importedResource: ImportedResource): string; //# sourceMappingURL=importedresource.d.ts.map