/**
 * Import passwords from a Chrome exported CSV file
 * @param csvPath Path to the CSV file exported from Chrome
 * @returns Number of imported entries
 */
export declare function importFromChromeCsv(csvPath: string): Promise<number>;
