import * as z from "zod/v3"; export type AssetHostListInputBody = { /** * RFC3339 Timestamp to view all requested hosts at a specific point in time. Must be a valid RFC3339 string. Ensure that you suffix the date with T00:00:00Z or a specific time. */ atTime?: Date | undefined; /** * A list of host IP addresses. */ hostIds: Array | null; }; /** @internal */ export type AssetHostListInputBody$Outbound = { at_time?: string | undefined; host_ids: Array | null; }; /** @internal */ export declare const AssetHostListInputBody$outboundSchema: z.ZodType; export declare function assetHostListInputBodyToJSON(assetHostListInputBody: AssetHostListInputBody): string; //# sourceMappingURL=assethostlistinputbody.d.ts.map