/**
 * Push a local file to Rock RMS
 * @param {string} localFilePath - Path to the local file
 * @param {string | undefined} targetPath - Path on the server to save the file (optional)
 * @returns {Promise<void>}
 */
export declare function pushFile(localFilePath: string, targetPath?: string): Promise<void>;
