import { LiteralPrimitive } from '@angular/compiler';
import { Scopes } from '../../types';
export declare function resolveAliasAndKey(key: LiteralPrimitive['value'], scopes: Scopes): [string, string | null];
/**
 *
 * Resolve the scope alias
 *
 * @example
 *
 *  scopePath: 'some/nested' => someNested
 *  scopePath: 'some/nested/en' => someNested
 *
 */
export declare function resolveScopeAlias({ scopePath, scopes, }: {
    scopePath: string;
    scopes: Scopes;
}): string;
