import type { ServiceIdentifier } from "inversify";
import type { IAuthService, IUploadService } from "./types";
export declare const SERVICE_IDENTIFIERS: {
AuthService: ServiceIdentifier<IAuthService>;
UploadService: ServiceIdentifier<IUploadService>;
};