import { CRMClient } from "./CRMClient";
export declare class ImportExportUtil {
    /** Exports all the existing records of a given entity to the specified file */
    static export(client: CRMClient, entityName: string, fileName: string): void;
    /** Loads the specified file in CRM. If the record exists, then it updates. Otherwhise, it creates it. */
    static import(client: CRMClient, fileName: string): void;
}
