import type { HistoryOptions, CompanyDataType } from '../types';
export declare const addHistory: (company: CompanyDataType, options: HistoryOptions) => void;
export declare const getHistory: (options: HistoryOptions) => CompanyDataType[];
export declare const removeHistory: (options: HistoryOptions) => void;
