import { z } from 'zod'; import { APIClient } from '@agentuity/api'; export declare const ListRegionsResponse: z.ZodArray>; export declare const ListRegionsResponseSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{ success: z.ZodLiteral; message: z.ZodString; code: z.ZodOptional; }, z.core.$strip>, z.ZodObject<{ success: z.ZodLiteral; data: z.ZodArray>; }, z.core.$strip>], "success">; export type ListRegionsResponse = z.infer; export type RegionList = z.infer; /** * List all available cloud regions * * @param client * @returns */ export declare function listRegions(client: APIClient): Promise; //# sourceMappingURL=list.d.ts.map