import * as z from "zod/v3"; export type DeleteCollectionRequest = { /** * The IDs of the Collections to delete. */ ids: Array; /** * The datasource allowed in the Collection to be deleted. */ allowedDatasource?: string | undefined; }; /** @internal */ export type DeleteCollectionRequest$Outbound = { ids: Array; allowedDatasource?: string | undefined; }; /** @internal */ export declare const DeleteCollectionRequest$outboundSchema: z.ZodType; export declare function deleteCollectionRequestToJSON(deleteCollectionRequest: DeleteCollectionRequest): string; //# sourceMappingURL=deletecollectionrequest.d.ts.map