import { Ora } from 'ora';
export declare function pullPath(pullPath: string): Promise<void>;
/**
 * Pull a file from Rock RMS and save it locally
 * @param {string} serverFilePath - Path to the file on the server
 * @param {Ora} spinner - Ora spinner
 * @param {string | undefined} outputPath - Local path to save the file (optional)
 * @returns {Promise<void>}
 */
export declare function pullFile(serverFilePath: string, spinner: Ora, outputPath?: string): Promise<void>;
