import type { I18NContext, I18NSystem, I18NSystemStorageOperations, I18NSystemStorageOperationsCreate, I18NSystemStorageOperationsUpdate } from "@webiny/api-i18n/types"; interface ConstructorParams { context: I18NContext; } export declare class SystemStorageOperations implements I18NSystemStorageOperations { private readonly _context; private readonly entity; private get partitionKey(); constructor({ context }: ConstructorParams); get(): Promise; create({ system }: I18NSystemStorageOperationsCreate): Promise; update({ system }: I18NSystemStorageOperationsUpdate): Promise; } export {};