import { BaseParams } from '../types'; interface AddKeysParams extends BaseParams { scopeAlias: string | null; keyWithoutScope: string; params?: string[]; } export declare function addKey({ defaultValue, scopeToKeys, scopeAlias, keyWithoutScope, scopes, params, }: AddKeysParams): void; export {};