import type { IRoom } from '@rocket.chat/core-typings'; import type { PaginatedRequest } from '../../helpers/PaginatedRequest'; export type GroupsMessagesProps = PaginatedRequest<({ roomId: IRoom['_id']; } | { roomName: IRoom['name']; }) & { mentionIds?: string; starredIds?: string; pinned?: boolean; query?: Record; }>; export declare const isGroupsMessagesProps: import("ajv").ValidateFunction; //# sourceMappingURL=GroupsMessagesProps.d.ts.map