import type { ITeam } from '@rocket.chat/core-typings'; import type { PaginatedRequest } from '../../helpers/PaginatedRequest'; type GeneralProps = { filter?: string; type?: 'channels' | 'discussions'; }; export type TeamsListChildrenProps = PaginatedRequest<{ teamId: ITeam['_id']; } & GeneralProps> | PaginatedRequest<{ teamName: ITeam['name']; } & GeneralProps> | PaginatedRequest<{ roomId: ITeam['roomId']; } & GeneralProps>; export declare const isTeamsListChildrenProps: import("ajv").ValidateFunction; export {}; //# sourceMappingURL=TeamsListChildren.d.ts.map