import { TransferLocationForAdminDto } from '@escapenavigator/types/dist/location/transfer-location-for-admin.dto'; import { ApiMethodDeclaration } from '..'; type ParamsData = { id: number; data: TransferLocationForAdminDto; }; type ResponseData = { locationId: number; fromProfileId: number; toProfileId: number; movedQuestrooms: number; }; export declare const transferForAdmin: ApiMethodDeclaration; export {};