import { Tenancy, TenancyStorageOperations } from "../types"; interface CreateSystemMethodsParams { storageOperations: TenancyStorageOperations; } export declare function createSystemMethods({ storageOperations }: CreateSystemMethodsParams): { getVersion(this: Tenancy): Promise; setVersion(version: string): Promise; install(this: Tenancy): Promise; }; export {};