import * as z from "zod/v3"; export type ListCollectionsRequest = { /** * Whether to include the audience filters with the listed Collections. */ includeAudience?: boolean | undefined; /** * Whether to include the editor roles with the listed Collections. */ includeRoles?: boolean | undefined; /** * The datasource type this Collection can hold. * * @remarks * ANSWERS - for Collections representing answer boards */ allowedDatasource?: string | undefined; }; /** @internal */ export type ListCollectionsRequest$Outbound = { includeAudience?: boolean | undefined; includeRoles?: boolean | undefined; allowedDatasource?: string | undefined; }; /** @internal */ export declare const ListCollectionsRequest$outboundSchema: z.ZodType; export declare function listCollectionsRequestToJSON(listCollectionsRequest: ListCollectionsRequest): string; //# sourceMappingURL=listcollectionsrequest.d.ts.map