export interface ImporterOptions {
    master_locale: string;
    api_key: string;
    tmpPath: string;
    cmaHost: string;
    cdaHost: string;
    isAuthenticated: boolean;
    alias?: string;
}
export declare function run(options: ImporterOptions): Promise<void>;
