import { GlobalCopyApi } from '../api'; import { GlobalCopy } from '../types'; import { GlobalStore } from './GlobalStore'; export declare class GlobalCopyStore { globalStore: GlobalStore; api: GlobalCopyApi; copy: GlobalCopy; featureNamespace: string; isInitialized: boolean; constructor(globalStore: GlobalStore); loadCopy: () => Promise; getCopy: (namespace: string, translationKey?: string) => Promise; }