import type { IRoom } from '@rocket.chat/core-typings'; export type TeamsRemoveRoomProps = ({ teamId: string; } | { teamName: string; }) & { roomId: IRoom['_id']; }; export declare const teamsRemoveRoomPropsSchema: { oneOf: ({ type: string; properties: { teamId: { type: string; }; roomId: { type: string; }; teamName?: undefined; }; required: string[]; additionalProperties: boolean; } | { type: string; properties: { teamName: { type: string; }; roomId: { type: string; }; teamId?: undefined; }; required: string[]; additionalProperties: boolean; })[]; }; export declare const isTeamsRemoveRoomProps: import("ajv").ValidateFunction; //# sourceMappingURL=TeamsRemoveRoomProps.d.ts.map