import * as $dara from '@darabonba/typescript'; export declare class ListMemoryCollectionsRequest extends $dara.Model { /** * @remarks * Filters the results by memory collection name. * * @example * my-memory-1 */ memoryCollectionName?: string; /** * @remarks * The page number. Defaults to 1. * * @example * 1 */ pageNumber?: number; /** * @remarks * The number of entries to return per page. Defaults to 20. * * @example * 20 */ pageSize?: number; /** * @remarks * Filters the results by memory collection status. * * @example * READY */ status?: string; /** * @remarks * Filters the results by memory collection type. * * @example * mem0 */ type?: string; /** * @remarks * The ID of the workspace to filter by. */ workspaceId?: string; /** * @remarks * The IDs of the workspaces to filter by, provided as a comma-separated string. */ workspaceIds?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }