import React from 'react'; import { BrowserTypes } from '../../typings'; export interface ToolbarProps { browserTypes: BrowserTypes[]; activeBrowsers: BrowserTypes[]; toggleBrowser: (type: BrowserTypes) => void; onCLose: () => void; onRefresh: () => void; onSave?: () => void; isVertical?: boolean; } declare const Toolbar: React.FC; export { Toolbar };