export declare class LocalizationService {
    prefix: string;
    listPrefix: any[];
    static constantValue: string;
    constructor(prefix: string);
    private handlePrefix;
    protected setListPrefix: (listPrefix: string[]) => void;
    private buildKeyFromPrefix;
    protected findResource: (key: string, resource: any) => any;
    getText: (key: string) => any;
    protected getResourceValue: (key: string) => any;
}
