import { Project } from './project'; /** * Controller class to work with the strings */ export declare class Resources { $: any; private map; currentProject: Project; resourceStrings: any; constructor(project: Project); projectName(): string; /** * * @param {string} val * @param {boolean} isPlural * @returns */ replaceInString(val: string, isPlural?: boolean): string; /** * Returns the * @returns */ projectToken(): string; projectTokenPlural(): string; tokenPlural(): string; token(): string; get(term: any): any; registerPageString(pageId: any, key: any, defaultValue: any, replaceInValue?: boolean): any; tryGetPageSting(page: any, key: any, plural?: boolean): string | false; getPageString(page: any, key: any, plural?: boolean): string; capitalize(str: any): any; initialize(): Promise; load(): Promise; } declare const resources: Resources; export default resources; //# sourceMappingURL=resources.d.ts.map